I have list of images, on over on image i want to show some information on that image. And mouseout of the info div, same should disappear. Problem is when mouse moves on c
You can emulate behavior of mouseleave event:
<div id="pop_div" onmouseout="if ((event.relatedTarget || event.toElement) == this.parentNode) clearinfo()" >
<img alt="" src="" />
<p>lines of text</p>
</div>
That is the behavior of mouseover. If you were using jQuery however, you could use mouseenter/mouseleave events.