Tooltips for Selection Tags

I have a requirement on my website to have multiple choices presented to user. This can be done by either using a multi checkboxes or selection tags. Is there a way to have some kind of info popup/tooltip on each of those choice/tags … I need to give user a quick one line info about each of those choices.
I know I can create one hidden popup and show it on hover and hide it later…but that only gives one popup for all choices…is there a way to provide different popup for different choices.

You can’t do it with the selection tags element but you can create tabs of your own (using boxes) and do whatever you want.

You can also use the selection tags and put a transparent rectangle over each of them, then ad onMouseIn event listener, and show the hidden box.

@jonatandor35 Thank you for the answer. I can try this, but will it work with different screen sizes you think ?

@singhsmanoj maybe yes maybe not. I’d would go for creating tab buttons of my own (instead of using selection tags with transparent layer). This way you can know for sure it’ll work on every screen.