Hello,

How about this - or something very like it:

$(document).ready(function() {
    $('ul.nav').superfish().click(function(){
        $(this).hide();
    });
});

I guess clicking anywhere in the nav is suitable. Might not need to
attach the click handler to the links really. You may want to
experiment with .css('visibility','hidden') instead of hide() as the
latter could make other page elements move around disconcertingly.

Joel Birch.

Reply via email to