Hi all,
I have an image map and would like it not to display the url, but a word in the status bar instead.
I have seen a few ways to do this, using self.status and window.status but neither seem to work for me, I still get the url in the status box.
The example scripts I have seen on the internet also just show the urls as well when I test them, none seem to work, on my laptop (win98, IE6) nor on my desktop (win-xp, IE6).
A snippet of code I am using is below.
Thanks for any suggestions, Chris
<AREA SHAPE="RECT" COORDS="175,0,271,216"
ONMOUSEOVER="self.status='Download'; return true;" ONMOUSEOUT="self.status='';"
HREF="http://www.sample.com/sample.php"
ALT="Download Now!">
I have an image map and would like it not to display the url, but a word in the status bar instead.
I have seen a few ways to do this, using self.status and window.status but neither seem to work for me, I still get the url in the status box.
The example scripts I have seen on the internet also just show the urls as well when I test them, none seem to work, on my laptop (win98, IE6) nor on my desktop (win-xp, IE6).
A snippet of code I am using is below.
Thanks for any suggestions, Chris
<AREA SHAPE="RECT" COORDS="175,0,271,216"
ONMOUSEOVER="self.status='Download'; return true;" ONMOUSEOUT="self.status='';"
HREF="http://www.sample.com/sample.php"
ALT="Download Now!">
Comment