-
Statusbar?!?!??
Hi!
I have a little problem with the statusbar on internet explorer.
Is there any way to disable the showing of text in the statusbar when one moves over, clicks a link???
I have tried window.status = 'Homepage name' in the BODY ONLOAD = " " Tag, but when I move over a link the link will still show in the statusbar (ex. www.test.com), can i disable this function without calling window.status on every link i have??
:confused: :confused: :confused:
-
Put this inside your < HEAD > < /HEAD > tags.
Code:
<script language="JavaScript">
window.setInterval("blankStatus()",10);
function blankStatus()
{
window.status="Whatever you want";
}
</script>