[jQuery] Re: fadein/fadeout conflicting

2008-10-01 Thread backdoc
Awesome! That works perfectly. Thanks for your help. On Oct 1, 12:19 am, ricardobeat <[EMAIL PROTECTED]> wrote: > fadeOut() actually sets display:none at the end of the animation, so > when this happens it triggers the onmouseout event. > > Try using the fadeTo() function (http://docs.jquery.co

[jQuery] Re: fadein/fadeout conflicting

2008-09-30 Thread ricardobeat
fadeOut() actually sets display:none at the end of the animation, so when this happens it triggers the onmouseout event. Try using the fadeTo() function (http://docs.jquery.com/Effects), it keeps the element in place: $("a").hover( function() { $(this).css("background", "white"