How can I make a tooltip?

I’ve created the placeholder message.
I’ve set the display as none with an absolute position.

For my icon, I’ve added a state on hover. But how can I relate the text with the icon I have?

Thanks

Hi Gaby,

I made it with “dropdown” standard element.

2025-05-2610-26-52-ezgif.com-video-to-webp-converter

  1. I placed an icon inside trigger.

  2. Bound dropdown conditional rendering to a var:

  3. Created two workflows inside the icon on “mouse enter” and “mouse leave”.

3.1. On mouse enter:

I added a time dealy to imitate debounce, cause I don’t want toolptip to pop-up immediately.

3.2. On mouse leave:

2 Likes

Nice one Batik!

Thank you for the in depth tutorial :folded_hands:

1 Like

Thank you very much Batik for taking the time of making the step by step of what I need to do.

It worked!!!

1 Like

A simple one you can also do if you don’t want to use a dropdown is create an icon ( i used the exact same one thats shown here ) and then add an html attribute of title and then you’re tooltip text.

3 Likes

Hi Yaj, this is way easier.

Thanks!!!