I have problems with this freeze. When a child element is clicked inside, the entire menu disappears and then returns.
$('.sc_menuwrap').hover(function(){ $('.sc_menuwrap').stop().fadeTo("slow", 1.0); // This sets the opacity to 100% on hover },function(){ $('.sc_menuwrap').stop().fadeTo("slow", 0); // This sets the opacity back to 60% on mouseout });
Here you can see a working example: http://dluxstudios.com/11 Any help was greatly appreciated.
$('.sc_menuwrap').hover(function(){ $(this).stop().fadeTo("slow", 1.0); },function(){ $(this).stop().fadeTo("slow", 0); });
Try this should work.
Be sure to use stop(true, true)
stop(true, true)