PDA

View Full Version : how can I hide or camoflauge a link destination?



ian
July 8th, 2001, 19:54
Do you know what I mean? I have a domain pointing to my free web account (f2s) with mydomain.com it shows my domain in the browser window (top) but when you move the mouse over a link it show's my free account link, not cool. I know there's a way to hide the mouse over link, but is there a way to make what you want to show up in the bottom browser window? Please tell me how to at least hide the link, thank you.

Ian

Dusty
July 8th, 2001, 20:17
<a href="real_url_here" onMouseOver="window.status='fake_url_here';return true" onMouseOut="window.status='';return true">link</a>

Example:

<a href="page.html" onMouseOver="window.status='http://www.yourdomain.com/page.html';return true" onMouseOut="window.status='';return true">Click Here</a>

ian
July 8th, 2001, 20:19
thank you