[jQuery] Re: Need help with navigation fading in and out

2007-09-11 Thread Joel Birch
This is exactly what the Superfish plugin does for you and also adds other accessibility features like keyboard access, hoverIntent support, timed delay on mouse out, etc. Currently, you have Superfish included in the source order before you include jQuery. This won't work. The code you currently

[jQuery] Re: Need help with navigation fading in and out

2007-09-11 Thread David Duymelinck
You use following code to create the effect $(".nav li").hover( function(){ $(".nav li", this).fadeIn("slow"); }, function() { } ); the this refers to the .nav li that is hovered so you are looking for an .nav li element inside the .nav li element. You should look for the ul in that li so