/ Published in: jQuery
Download hoverIntent - http://cherne.net/brian/resources/jquery.hoverIntent.html
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(document).ready(function() { $('#menu ul').hide(); $('#menu li').hoverIntent( function() { $(this).children('ul').slideDown('slow'); }, function() { $(this).children('ul').slideUp('slow'); }); });