PDA

Click to See Complete Forum and Search --> : Statusbar?!?!??


Smirre
Jul 16th, 2001, 04:29 AM
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:

sTyLeZ
Jul 16th, 2001, 04:55 AM
Put this inside your < HEAD > < /HEAD > tags.


<script language="JavaScript">
window.setInterval("blankStatus()",10);
function blankStatus()
{
window.status="Whatever you want";
}
</script>