If I use some really simple code, for example:
$('#elm').tipTip();
It will do what the plugin is intended for. Is there a way to destroy this binding to the plugin tipTip()will not be associated with this element for a long time?
UPDATE
The reason is that I don’t want to stop the hints from pop-ups, I have one main data div that the user sees, and as they click on the contents from the hidden divs, it moves into it with a strange transition.
The plugin works fine once, but then if I delete the content and add it back again (click something else and then again), they do not work.
I figured it was best to remove the entire plugin binding for the plugin from my element, and then start over again each time the content is moved to the field, maybe not.
source
share