Default status | changing message | Flashing text | Typing text |
scrolling text | Type in & Scrollout | Link description |
If you want to hide the status bar message from appearing when the mouse moves over certain links, add the following into the <head> section of your page: Click here if you want to disable this message for ALL links in the page.
<script>
var statusmsg=””
function hide(){
window.status=statusmsg
return true }
</script>
Inside each link you wish to mask the status bar message, add the below onMouseover code into it as follows:
<a href=”https://www.itechies.net” onMouseover=”return hide()”>iTechies.net</a>
Eg: pass the mouse over this link.statusbar examples. No message shown on the statusbar.
Disable the status bar message from appearing on all links
Add the following into the <head> section of your page:
<script>
function hide(){
window.status=”
return true }
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hide
document.onmouseout=hide
</script>