Hi, I was looking for a simple destination URL rewrite code. eg I would like to hide a link URL and replace it with something along the lines of ADD TO BASKET on mouseover and onclick. Thanks Ska
coopster
1:35 pm on Mar 5, 2004 (gmt 0)
Are you trying to change the text that appears in the status bar of the open window?
You'll have to test/tweak things, but it is something like this:
<a href="addtobasket.htm" onmouseover="window.status='ADD TO BASKET'; return true;" onmouseout="window.status=' '; return true;">ADD TO BASKET</a>
ska_demon
4:30 pm on Mar 5, 2004 (gmt 0)
Sweet, Thats exactly what I was looking for. Thanks Ska