/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/*-- 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(); });