On 21/04/2007, at 1:41 PM, Kush Murod wrote:
Hi,

I know that you can unbind events of elements $('ele').unbind();
Questions is how do you unbind hover function attached to element $ ('ele').hover(...

Cheers,
--Kush

I have used this successfully:

$('ele').unbind('mouseover',namedFunctionFromHoverArg1).unbind ('mouseout',namedFunctionFromHoverArg2);

This seems to behave correctly and I don't think there is an unbind ('hover',fn) as such.

Joel.

Reply via email to