How to get a picture instead of screentip when I hover a hotlink?

K

kmccoy

I would like to hover over a hyperlink and have it display a small image.
How can I do this?
 
W

Wayne-I-M

This is a forum for access database's. You should ask in another forum for a
better answer.

the basics of what you're looking for are to create a hidden div-layer.
place the picture in the layer and then use OnMouseOver event of the
hyperllink - something like

<a href="HyperLinkGoesHere" onmouseout="changePropRestore()"
onmouseover="changeProp(/*id*/'LayerNameGoesHere',1,'style.visibility','visible')">
Hyper Link Name</a></p>
<div style="Put all the sytle here like height possition hidden etc"
id="LayerNameGoesHere">
<img border="what ever you want here for size" src="ImageName" </div>


Good luck
 
Top