Hover text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using 2003, how do you cause a drop down text box to appear when you hover
over a word?

Thanks,
Vicki B.
 
I think this is what you want:

<p
onmouseover="textBox1.style.visibility = 'visible';x.style.visibility =
'visible'
borderLayer.style.visibility = 'visible'">Place word here</p>

<textarea id="textBox1" style="position : absolute;visibility :
hidden"></textarea>

<div id="borderLayer"
style="position: absolute;width : 184;height : 40px;left : 9px;top :
48px;border : 1px solid black;visibility : hidden">
</div>

<p>

<input id="x" type="button" style="position : absolute;visibility :
hidden;left : 197;top : 63"
value="Close Window" onclick="style.visibility =
'hidden';textBox1.style.visibility = 'hidden'
borderLayer.style.visibility = 'hidden'">

</div>

</p>
 
Back
Top