hey guys,
$('.file a').live('mouseenter', function() {
$('#download').stop(true, true).fadeIn('fast');
}).live('mouseleave', function() {
$('#download').stop(true, true).fadeOut('fast');
});
i want the mouseenter function to have a stop() and a DELAY of like a 1sec. So if i hover over #download the fadeIn should start 1second delayed. If i mouseout meanwhile the fadeIn shouldn't start. Get me?
I don't really know how to do that! any ideas? regards matt