Results 1 to 3 of 3

Thread: status bar

  1. #1
    Join Date
    May 2006
    Location
    New York City
    Posts
    77
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default status bar

    Hi. I'm a newbie. And I have a question. I want to change the status bar every time I MouseOver a link. Is there a way to do this globally to all the links on a page, or do I have to include the onMouseOver="window.status etc." for every single link? Thanks.

    @)~}~~~

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    No, you can globally do it like this:
    Code:
    <script type="text/javascript">
    window.onload = function() {
      var e = document.getElementsByTagName("a"),
        eventhandler = function() {
          window.status = "inu to neko";
          return false;
        };
      for(var i=0;i<e.length;i++)
        e[i].onmouseover = eventhandler;
    };
    </script>
    However, the statusbar is an important GUI feature. You shouldn't play with it, and most modern browsers won't even let you by default.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    May 2006
    Location
    New York City
    Posts
    77
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    It worked! Thanks. I appreciate it.

    @)~}~~~

Bookmarks

Posting Permissions

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