If i use some really simple code like :
$('#elm').tipTip();
It will do what the plugin is intended for. Is there a way to destroy this binding to the plugin tipTip()
will no long bind itself to this element?
UPDATE
The reason is, it's not that I want to stop the tips from popping up, I have one main data div that the user sees, and as they click around the content from hidden divs is moved into it with a snazzy transition.
The plugin works great once, but then if I remove the content and then add it back in again (click something else and then back again) they don't work.
I assumed the best thing was to remove the whole tip plugin binding from my element and then start again every time the content is moved into the box, perhaps not.