I have div and function mouseover:
$('#mydiv').mouseover(function(){
$('#otherdiv').show('slow');
});
$('#otherdiv').mouseout(function(){
$('#otherdiv').hide('slow');
});
but… The #otherdiv on show cover #mydiv and consists of 5 images 1px separated from each other. I want to that #otherdiv disappear after mouseout but I get a blinking.
How to do it?
demo jsBin
http://api.jquery.com/hover
http://api.jquery.com/stop