SpazzyMcSpazz
Regular Member
- Apr 20, 2009
- 261
- 77
EDIT: Thanks, but I've got it now. It's

So how do you make it look like the link points to somewhere else than it really does. Let's say you want to get them to google.com, but it says yahoo.com in that browser bar below?
I tried this, it's supposed to work but it doesn't in firefox 3.0.11....
Code:
<A href="http://fake.com" onmousedown="this.href = 'http://realdestination.com'">Click</a>
So how do you make it look like the link points to somewhere else than it really does. Let's say you want to get them to google.com, but it says yahoo.com in that browser bar below?
I tried this, it's supposed to work but it doesn't in firefox 3.0.11....
Code:
<a href="http://real-link.com/" onmouseover="window.status='http://fake-link.com';return true;" onmouseout="window.status=' ' ;return true;">Click here</a>
Last edited: