djedditt
05-12-2003, 07:02 PM
if i hover over my link,
in the left/bottom corner of the browser, the
URL where it goes is displayed there.
I want that it isn't displayed.
how can i do that?
starlet
05-13-2003, 12:15 AM
Not sure if this is what you mean?
<a href="http://www.site.com" target="_blank" onMouseOver="window.status='LINK NAME THAT WILL APPEAR IN STATUS BAR ON HOVER'; return true" onMouseOut="window.status=' '">Link.</a>
djedditt
05-13-2003, 10:59 AM
yes, but my links are images, that change when i hover over it.
i'm using this code for it:
<a href="right.html" onmouseover="over_image('img0');" onmouseout="off_image('img0')"> <img src="home0.gif" border="0" name="img0"> </a>
how can i add the code you gave me in it?
starlet
05-13-2003, 03:08 PM
Just add it in to your current code...
<a href="right.html" onMouseOver="window.status='LINK NAME THAT WILL APPEAR IN STATUS BAR ON HOVER'; return true" onMouseOut="window.status=' '" onmouseover="over_image('img0');" onmouseout="off_image('img0')"> <img src="home0.gif" border="0" name="img0"> </a>
angelivion
05-18-2003, 03:53 AM
about the onmouse code, how can I make it work on image maps?