Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Delay a hover affect Re: Delay a hover affect

#74758
tbwcf
Member

$('#element').hover(function(){
$('#dropdown').delay(1000).fadeIn('slow');
});

If I’ve understood the question properly the above should work.. using jQuery just use the .delay() function.