Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

Reference HTML elements in a data-tippy attribute #1178

Open
@pontus-mp

Description

Problem

Basic scenario, you are using the delegate plugin to automatically initialize a bunch of tippy.js tooltips:

delegate("body", {
  target: ".tippy",
});

This makes it really easy to add tons of tooltips, configurable almost entirely through HTML attributes:

<button class="tippy" data-tippy-trigger="click" data-tippy-content="This is a click-triggered tooltip!">Test/<button>

However, the following doesn't seem to be replicatable using the previous approach:

tippy(targets, {
  content: document.getElementById('hidden-tooltip-content-element'),
});

Solution

Add support for a new data-attribute that contains a selector:

<button class="tippy" data-tippy-content-selector="#hidden-tooltip-content-element">Test/<button>

This should not affect backward-compatibility, as long as people haven't been intruding on the data-tippy- namespace.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions