'SymRealWinOpen is undefined' error

  1. #1
    rkn0796 is offline Newbie

    Question 'SymRealWinOpen is undefined' error

    I'm having the following error when I use the Yahoo search engine in IE. When I enter a search criteria I receive a runtime error message box saying that SymRealWinOpen is undefined. I ran a debug and here is the portion of the script that is hanging up:
    var SymRealOnLoad;
    var SymRealOnUnload;

    function SymOnUnload()
    {
    window.open = SymWinOpen;
    if(SymRealOnUnload != null)
    SymRealOnUnload();
    }

    function SymOnLoad()
    {
    if(SymRealOnLoad != null)
    SymRealOnLoad();
    window.open = SymRealWinOpen;
    SymRealOnUnload = window.onunload;
    window.onunload = SymOnUnload;
    }

    SymRealOnLoad = window.onload;
    window.onload = SymOnLoad;

    It looks like a script error from the search engine but I'm not sure what is causing it. I have no problem using Mozilla or another search engine such as Google. I am running IE version 6.0.2800 and SP1. Can you offer help??? Thanks

  2. #2
    rkn0796 is offline Newbie
    Save 20% on AVG Internet Security 2012 Suite!
    Quote Originally Posted by rkn0796
    I'm having the following error when I use the Yahoo search engine in IE. When I enter a search criteria I receive a runtime error message box saying that SymRealWinOpen is undefined. I ran a debug and here is the portion of the script that is hanging up:
    var SymRealOnLoad;
    var SymRealOnUnload;

    function SymOnUnload()
    {
    window.open = SymWinOpen;
    if(SymRealOnUnload != null)
    SymRealOnUnload();
    }

    function SymOnLoad()
    {
    if(SymRealOnLoad != null)
    SymRealOnLoad();
    window.open = SymRealWinOpen;
    SymRealOnUnload = window.onunload;
    window.onunload = SymOnUnload;
    }

    SymRealOnLoad = window.onload;
    window.onload = SymOnLoad;

    It looks like a script error from the search engine but I'm not sure what is causing it. I have no problem using Mozilla or another search engine such as Google. I am running IE version 6.0.2800 and SP1. Can you offer help??? Thanks

+ Reply to Thread