/ Published in: jQuery
Download hoverIntent - http://cherne.net/brian/resources/jquery.hoverIntent.html
Expand |
Embed | Plain Text
$(document).ready(function() { $('#menu ul').hide(); $('#menu li').hoverIntent( function() { $(this).children('ul').slideDown('slow'); }, function() { $(this).children('ul').slideUp('slow'); }); });
You need to login to post a comment.
