/ Published in: jQuery
Expand |
Embed | Plain Text
/*-- Fleshgordon does a SuckerFish Nav --*/ $(document).ready(function(){ $("#nav li").hover( function(){ $("ul", this).css("height", "auto").stop().slideDown("fast"); }, function() { $("ul", this).stop().slideUp("fast"); } ); $("#nav ul").hide(); });
Comments
Subscribe to comments
You need to login to post a comment.

css("height", "auto") fixes some heigh bugs in FF3.5