Hello, <br>
<br>
I just joined the list, so I'm not sure if this question has been asked before.<br>
<br>
I currently have a popup that is a div tag containing nested
tags.&nbsp; The popup will timeout and disappear after a few
seconds.&nbsp; But, what I'd like is to have happen instead is for the
popup to appear right at the mouse location and disappear when you
mouseout of the popup. <br>
<br>
for example<br>
<br>
&lt;script&gt;<br>
<br>
&nbsp; function Show {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; make popup visible...<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
<br>
&nbsp;&nbsp; function Hide{<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; make popup hidden...<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } <br>
<br>
&lt;/script&gt;<br>
<br>
&lt;html&gt;<br>
&lt;p onmouseover=&quot;Show()&quot;&gt;some bogus text&lt;/p&gt;<br>
&nbsp; <br>
&lt;div onmouseout=&quot;hide()&quot;&gt;<br>
&nbsp;&nbsp; &lt;div&gt;Popup Title&lt;/div&gt;<br>
&nbsp;&nbsp; &lt;div&gt;&lt;a href=#&gt;Bogus Link&lt;/a&gt;&lt;/div&gt;<br>
&lt;/div&gt;<br>
<br>
&lt;/html&gt;<br>
<br>
The problem is that it will hide the popup when the mouse leaves the
first div tag and enters the div title tag.&nbsp; I want the popup to
disappear only after the containing div tag's boundaries have been
left, not when moving inside the popup onto the &lt;a&gt; tag for
example.<br>
<br>
I know someone is onto what I'm trying to do.<br>
<br>
Thank you,<br>
<br>
Keith<br>