Results 1 to 2 of 2

Thread: Error on page

  1. #1
    Join Date
    Apr 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Error on page

    I have some script from Dynamic Drive DHTML code library, and whenever I click on a link on my homepage, http://min.midco.net/w0hju/homepage.htm and then click the back button, I get the message at the bottom bar that says, error on page?
    What script is causing this?
    Thanks,
    w0hju

  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

    Error: SymRealWinOpen is not defined
    Source File: http://min.midco.net/w0hju/homepage.htm
    Line: 612

    That's in NS7.2, in IE it says line 613 but, the same error.

    You can try changing the line above it:
    Code:
      if(SymRealOnLoad != null)
    to:
    Code:
      if(SymRealOnLoad != 'null')
    or:
    Code:
      if(SymRealOnLoad)
    or:
    Code:
      if(SymRealOnLoad != undefined)
    or:
    Code:
      if(SymRealOnLoad != 'undefined')
    One of those should take care of it. I vote for the last one but, am not 100% sure without testing.
    Last edited by jscheuer1; 04-18-2005 at 05:49 PM.
    - 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
  •