atomiks / tippyjs

Tooltip, popover, dropdown, and menu library
https://atomiks.github.io/tippyjs/
MIT License
11.91k stars 518 forks source link

Span tooltips clickable on mobiles? #996

Closed panomitrius closed 2 years ago

panomitrius commented 2 years ago

I'm trying out Tippy and have created a few tooltips by adding tooltips like this one the JS section:

tippy('#defintion-inre-feno', {
  content: "<b>Title:</b><br>Explanation..."
});

It works great on desktops and appears when mouse hovers over, but on mobiles it doesn't show and is not clickable. How do I get it to work?

atomiks commented 2 years ago

You likely need to make the element focusable via tabindex="0"

panomitrius commented 2 years ago

Somehow started to work now!