Within my CSS, there is a class named customtooltip with the following code snippet:
.customtooltip:hover::after{
// This code creates a tooltip that appears as a popup with information
}
I am looking to utilize jQuery to have more control over this tooltip. Currently, I can only select the .customtooltip class or use the .hover event on the tooltip itself. However, I aim to dynamically re-position the popup/tooltip based on the cursor's position and believe jQuery is needed for this functionality.
Thank you,