I have a div and mouseover function:
$('#mydiv').mouseover(function(){
$('#otherdiv').show('slow');
});
$('#otherdiv').mouseout(function(){
$('#otherdiv').hide('slow');
});
but ... #otherdivon the cover #mydivand consists of 5 images 1px, separated from each other. I want to #otherdivdisappear after mouseout, but I am becoming blinking.
How to do it?
Nips source
share