Whoops, sorry Jason - you're not Andy!

Anyway, another thing that is stopping your code from working (in addition to my previous point about the closing bracket etc.) is that the div that contains your nav has an id of 'nav', not a class. Therefore, you need to change your code to:

$(document).ready(function() {
        $('#nav').superfish({
                delay : 1000
        });
});

...and then possibly change any CSS that may be trying to work on .nav to #nav.

Joel Birch.

Reply via email to