[jQuery] Re: Superfish, bgiframe, jQuery 1.2 issues...

2007-11-02 Thread rynoceris
Hey Joel, Thank you so much! I can't believe I forgot something that simple. After putting that in, the menu now works perfectly across all browser platforms. Again, thank you so much for your help! Ryan Ours

[jQuery] Re: Superfish, bgiframe, jQuery 1.2 issues...

2007-11-01 Thread Joel Birch
Hi Ryan, You didn't initialise your menu. Put this in a script tag after including Superfish: $(document).ready(function(){ $('ul.nav').superfish(); }); Of course you can also pass in an options object if you wish. Check out the Superfish documentation for more info.