If I put the mouse over a link, the link information is shown in the status bar at the bottom of the browser. How do I turn this off so user would not be able to see the link information at the status bar? The reason is, the link contains an ID that the next page needs to verify and I don't want people to see the ID right on the status bar of their browser.
Any help is grateful!
ljCharlie
Prevent link info to show in the status bar
Moderator: General Moderators
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
window.status = '';
although, as Mark said, it's nearly pointless.
Code: Select all
<a href="whatever.html?id=super+secret" onmouseover="window.status=''">blahblah</a>although, as Mark said, it's nearly pointless.