Results 1 to 4 of 4

Thread: onMouseover question within Netscape v8.0.4

  1. #1
    Join Date
    Jan 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default onMouseover question within Netscape v8.0.4

    This code seems simple enough and it works with IE but not Netscape (v8.0.4). Any ideas?

    Code:
    <html>
    <head>
    <title>Test onMouseover</title>
    </head>
    
    <body>
    
    <a href="#test" onMouseOver="window.status='Test'; return true;" onMouseout="window.status=' '; return true;" >Test window status bar change</a>
    
    <a name="test"></a>
    
    </body>
    </html>
    Last edited by Tucsonan; 01-16-2006 at 08:17 PM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Beginning at least with v7.2 Netscape has had, as an option, the ability to prevent javascript from changing the status bar message. Are you sure your v8.0.4 browser doesn't have that set?
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jan 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    When I visit other sites I can see the status bar text change when hovering over links. For local files the option to enable status bar changes is enabled.
    Last edited by Tucsonan; 01-16-2006 at 08:16 PM.

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Now that you mention it, I've noticed some uneven behavior in that regard with NS8.0.4 in FF mode. It doesn't always get the status bar changes on what appear to be regular links. I think that may be a bug. I'm guessing but, I wouldn't be surprised to find that what I think are ordinary links, are in fact 'souped up' with onmouseover/onmouseout status events like your demo. I think that NS8.0.4 in FF mode will only alter the status if it is the href of the link and there is no javascript status command associated with the onmouseover event of the link. In IE mode, NS8.0.4 will do the status events.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •