Hi,
I noticed a slight idiosyncrasy when using unbind with 'hover', for example:
$('div.item').hover( function() {}, function() {}); //works fine
$('div.item').unbind('hover'); //in IE6/FF, this unbinds ALL events
To get it to work correctly, one would have to do:
$('div.item').unbind('mouseover').unbind('mouseout');
While this isn't a major problem, it would be more consistent if you could
unbind hover directly.
Cheers,
Evan
--
View this message in context:
http://www.nabble.com/Unbind-Hover-tf3438517.html#a9587729
Sent from the JQuery mailing list archive at Nabble.com.
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/