Years ago I used this Javascript code to hide long links from the surfer. It should make it so they only see the short url in the status bar when they hover over the link.
Now I cannot get it to work in either IE8 or FF3.5. I've stripped it down to this bare minimum code for testing:
Has something changed in new browsers that makes this not work?
Now I cannot get it to work in either IE8 or FF3.5. I've stripped it down to this bare minimum code for testing:
Code:
<html>
<head>
<title>Title</title>
</head>
<body>
<a href="http://refer.somesite.com/code=350238502394" onMouseOver="window.status='http://www.somesite.com';return true">CLICK HERE</a>
</html>
Last edited: