I have dropdown menu using jquery function like this:
$(document).ready(function()
{
$('li').hover(
function()
{
var timer = $(this).data('timer');
if(timer) clearTimeout(timer);
$(this).addClass('over');
},
function()
{
var li = $(this);
li.data('timer', setTimeout(function(){ li.removeClass('over'); }, 500));
});
});
Preview: http://jsbin.com/onawur
The function will hide sub menu after 500 ms. I have no idea, how to make submenu show after 500 ms too. Please help..
over– Shad Dec 16 '11 at 0:17