Results 1 to 2 of 2

Thread: Statusbar?!?!??

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    May 2000
    Location
    Kalix, Norrbotten, SWEDEN
    Posts
    343

    Question 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??

    Visual Basic
    C, C++
    Java
    Access
    SQL Server

    MCP, MCSD

  2. #2
    Put this inside your < HEAD > < /HEAD > tags.

    Code:
    <script language="JavaScript">
    window.setInterval("blankStatus()",10);
    function blankStatus() 
    {
        window.status="Whatever you want";
    }
    </script>
    Now the world is gone I'm just one...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width