[jQuery] Re: howto properly rebind hover

2008-01-27 Thread Joel Birch
Also, a cool thing you can do now is group events within one unbind (and bind too): .unbind('mouseenter','mouseleave') Joel Birch

[jQuery] Re: howto properly rebind hover

2008-01-26 Thread David Serduke
Looks like you already figured it out but yes, with 1.2.2 hover now binds mouseenter and mouseleave. Also unbind('hover') shouldn't do anything since hover() is a helper function not an actual event so that part shouldn't be necessary. David On Jan 25, 6:18 pm, h0tzen [EMAIL PROTECTED] wrote:

[jQuery] Re: howto properly rebind hover

2008-01-25 Thread h0tzen
in the current jquery-version 1.2 you have to unbind mouseenter and mouseleave. code this.table.find(' tbody tr').unbind('hover').unbind('mouseenter').unbind('mouseleave').removeClass('gt- hover') /code

[jQuery] Re: howto properly rebind hover

2008-01-25 Thread h0tzen
anyone any hint please? at least a comment if this *should* work?