When the page is done loading I call a function which puts the hover event on $('a.tooltip'). When I want to unbind this event I do the following:
$('a.tooltip').unbind('mouseover mouseout');
That works! However when I want rebind the hover event and I call the function that was first loaded at document ready again, it doesn't rebind the hover helper. How can I rebind it?
Thank you,
Ice