On 06/06/2007, at 7:35 AM, JLuther wrote:
Andy,

Thanks, I tried adding the curly brace, but still no change in FF. The
menu won't even display in IE7 now.

Hi Andy,

You are actually missing the closing bracket (not curly this time) and semicolon for the $(document).ready() function. Insert ); after the last curly bracket that appears before the closing </script> tag.

You are calling the options correctly, except just a tip: you only need to set the options that you want to override the defaults, therefore you could call your superfish like this:

$(document).ready(function() {
        $('ul.nav').superfish({
delay : 1000 /* <-- this is the only option that differs from the defaults*/
        });
}); /*  <-- you are missing this closing bracket and semicolon*/

Hope you get it working. Nice site by the way.

Joel Birch.

Reply via email to