JavaScript - Hide status bar message



Hiding status bar in IE using JavaScript

    function hidestatus()
     {
        window.status = ''
        return true
     }

    if (document.layers)
    document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
    document.onmouseover = hidestatus
    document.onmouseout = hidestatus

Share |

 Cant find the page you are looking for?
 Help us to improve by adding the content that you are looking for.
 Leave a feedback
 We look forward to hear your comments and feedback.