The site has a block:
<div id="is"> <a href="#">Показать блок</a> <span id="box" style="display: none"> <a href="#">ссылка</a> <a href="#">ссылка</a> <a href="#">ссылка</a> </span> </div>
the problem is that if you hover the mouse (the cursor) on a block with the "is" id, then a block appears with links (id = "box") and for this you write jQuery code:
$("#is").mouseover(function(){ $('#box').show('slow'); }).mouseout(function() { $('#box').hide('slow'); });
The script works, but every time you hover on links that are in id = "box" - this block blinks, then it appears and disappears. How to make the script work according to the idea, if you hover on the id id = is " then the id =" box " block appears and when to remove the cursor from the id block = the" id = "box" block disappears ..?
Thank you for attention!