hoverIntent/delay problem
Hi, I am new and tried posting the other day but it did not go through.
So I'm trying again.
I am new to jQuery. Past experience was in AS3.
I'm rebuilding a website but find some of my menus a little jumpy.
I found the hoverIntent UI but could get it to work. I'm using another version.
Im getting the right delay at first but I canot get he menu(#list") to toggle back up in any reasonable way. It just fades out.
Could someone check my code and point me in a good direction:
$(function(){
$('#sculpture').bind("hover",{delay:750},function(){
$('#list').animate({height:'toggle'}, 'slow');
});
});
$(function(){
$('#list').bind("mouseleave",function(){
$(this).delay(650).slideUp('slow');
});
});
Thanks for your time.
John