Faking link destination?

SpazzyMcSpazz

Regular Member
Joined
Apr 20, 2009
Messages
261
Reaction score
77
EDIT: Thanks, but I've got it now. It's

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:
Javascript is the key here; I'm sure I have such a script stored somewhere...

Anyway, have you asked google? -> http://www.google.hr/search?hl=hr&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=CiI&q=javascript+modify+url+statusbar&btnG=Tra%C5%BEi&meta=
 
I got it now. I found the solution as I said but it didn't work in my browser.

If anyone's wondering, another solution is

Code:
<A href="http://fake.com" onmousedown="this.href = 'http://realdestination.com'">Click</a>
 
do you wanna display another domain into address bar ? or you need just to show another link into the banner code ? if you wanna show a different domain on your address bar just use '' stealth redirect '' :) it's working nice :P
 
Back
Top