• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

html and onMouseOver

M0RPH

Diamond Member
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:

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>
Has something changed in new browsers that makes this not work?
 
Last edited:
It has depreciated, and for good reason IMO. People usually don't read the status bar, and when they do, the like to know where they are going. The depreciation helps to cut down on the website spoofing that fishers use to try and make their links look more legitimate.
 
Back
Top