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

  • Thread starter Thread starter kmccoy
  • Start date Start date
K

kmccoy

I would like to hover over a hyperlink and have it display a small image.
How can I do this?
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top