How do I unbind \"hover\" in jQuery?
This does not work:
$(this).unbind(\'hover\');
Another solution is .die() for events who that attached with .live().
Ex.:
// attach click event for tags
$('a').live('click', function(){});
// deattach click event from tags
$('a').die('click');
You can find a good refference here: Exploring jQuery .live() and .die()
( Sorry for my english :"> )