Suckerfish nav reloaded


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /*-- Fleshgordon does a SuckerFish Nav --*/
  2.  
  3. $(document).ready(function(){
  4. $("#nav li").hover(
  5. function(){ $("ul", this).css("height", "auto").stop().slideDown("fast"); },
  6. function() { $("ul", this).stop().slideUp("fast"); }
  7. );
  8. $("#nav ul").hide();
  9. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.