I want to create a tooltip that will be displayed next to the mouse pointer instead of a pop-up window

I want to implement a code like this inside an execute Action in one of my TAGs
Here’s the code if tooltip that i want to implement : `
.tooltip {
position: absolute;
display: none;
padding: 5px;
background-color: black;
color: white;
}

Move your mouse over me!
This is a pop-up!
`

can you help me with this please : I was using this code : document.getElementById("UID_1675255964132").addEventListener("mouseover", function() { alert("This is a pop-up!"); }); but i want tooltip instead

Hello @ACD,

I haven’t tested this myself, but I found this post and you can give it a try. Confirmation message - #7 by Tim_hms

Let me know if that works!

Best regards,
Juliana