bacterozoid
10-19-2002, 08:05 PM
Generally I don't use this type of code, but sometimes its useful:
<a href="javascript:chgImg(-1)"
onMouseover="window.status='Previous Image';return true"
onClick="window.status='Previous Image'"
onMouseout="window.status=''">Previous</a>
As you can see, if I were to hover over that link you would see the nasty JavaScript command down in the status bar, and I want to avoid that. It works when you hover, but changes to the command script when you hold the mouse button down on the link. Help! Lol.
To SEE what I mean, http://www.geocities.com/jon_zie/band/homepage.htm Go there, and the slideshow links are what I am talking about.
<a href="javascript:chgImg(-1)"
onMouseover="window.status='Previous Image';return true"
onClick="window.status='Previous Image'"
onMouseout="window.status=''">Previous</a>
As you can see, if I were to hover over that link you would see the nasty JavaScript command down in the status bar, and I want to avoid that. It works when you hover, but changes to the command script when you hold the mouse button down on the link. Help! Lol.
To SEE what I mean, http://www.geocities.com/jon_zie/band/homepage.htm Go there, and the slideshow links are what I am talking about.