Forum Moderators: phranque

Message Too Old, No Replies

Simple destination URL rewrite

any clues?

         

ska_demon

12:56 pm on Mar 5, 2004 (gmt 0)

10+ Year Member



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)

WebmasterWorld Administrator 10+ Year Member



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)

10+ Year Member



Sweet, Thats exactly what I was looking for.
Thanks
Ska