Jump to content

Recommended Posts

Posted

This code snippet keeps appearing in my pages, sometimes several times to a page. I have no idea where this is coming from. It appears in 'View Source' but not in the edit facility in cpanel.

 

Thoughts?

 

><script language="JavaScript">
<!--

function SymError()
{
 return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
 return (new Object());
}

window.open = SymWinOpen;

//-->
</script>

 

And then later...

 

><script language="JavaScript">
<!--
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;

//-->
</script>

 

Thanks and Happy Holidays :(

Posted

I did a bit more digging ....

 

My guess at the moment is that you are using Norton. From the symantic website,

 

SymError() is inserted into Web site source code after installing Norton Internet Security, Norton AntiSpam, or Norton Personal Firewall

 

Situation:

When you browse the Web, you see a SymError( ) function inserted into the Web page source code.

Solution:

The SymError() function is a normal activity of the Ad Blocking feature in your Norton program. Unless you experience specific problems because of this function, then you do not need to do anything.

 

However, if you require that this function disappear, then you may disable Ad Blocking to stop the SymError() function from appearing in most Web pages.

 

You can try disabling the Ad blocking, and see if it goes away

Posted

Thanks Andy.

 

Annoying. Unfortunately the Norton Ad-block IS disabled but the code is still there. Ill have a better look at things after work today. Thanks again. :(

Posted

Ok, turns out the Ad-Block was disabled and Pop-up Blocker was ENABLED thusly the problem and when disabled the code did go away.

 

How very odd indeed.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...