I have a link that I'd like people to be able to click on but not see the actual link. So the ONLY way that they can EVER get to the destination URL is to click on the link wherever I've placed it. ex: Click Here
How Do You Hide A URL In Status Bar/ Mouse Over & Stop "Copy Link" Ability?
28
I have a link that I'd like people to be able to click on but not see the actual link. So the ONLY way that they can EVER get to the destination URL is to click on the link wherever I've placed it.
ex: Click Here
Takes them to domain.com/whatever.html but shows domain.com (or whatever)
But I don't want anyone to ever know that they're being sent to /whatever.html
So the only ways I can think of that they could possibly know are:
1. URL address bar
2. Bottom left corner (when hovering over a link)
3. Copy Link Location (right clicking)
So How can I handle this?
I found some code that will work for IE but not Firefox etc, and they give code for it to work in Firefox etc but it requires java to be active for it to work.
Looking for a solution that will work 100% of the time for most all browsers.
Anyone?
Thanks in advance,
~Russell Prisco =)
ex: Click Here
Takes them to domain.com/whatever.html but shows domain.com (or whatever)
But I don't want anyone to ever know that they're being sent to /whatever.html
So the only ways I can think of that they could possibly know are:
1. URL address bar
2. Bottom left corner (when hovering over a link)
3. Copy Link Location (right clicking)
So How can I handle this?
I found some code that will work for IE but not Firefox etc, and they give code for it to work in Firefox etc but it requires java to be active for it to work.
Code:
<a href="http://www.sell.com/?referrer=225" onMouseOver="window.status='http://www.sell.com'; return true" onMouseOut="window.status=''">Click here </a>
Code:
<script language="javascript" type="text/javascript">
function redirect(URL)
{
document.location=URL;
return false;
}
</script> Code:
<a href="http://www.sell.com" onclick="return
redirect('http://www.sell.com/?referrer=225');">Click here</a> Anyone?
Thanks in advance,
~Russell Prisco =)
- iw433
- russellprisco
- [1] reply
- Bruce Wedding
- [ 2 ] Thanks
- [1] reply
- gyar29
- Tyrus Antas
- bgmacaw
- GarrieWilson
- BurgerBoy
Next Topics on Trending Feed
-
28