/ Published in: jQuery
Expand |
Embed | Plain Text
$('ELEM').hover(function() { clearTimeout($(this).data('timeout')); $('ELEM').slideDown('fast'); }, function() { var t = setTimeout(function() { $('ELEM').slideUp('fast'); }, 2000); $(this).data('timeout', t); });
You need to login to post a comment.
