What is it?

F

Fred

Can someone explain to me in simple terms what this html code is all about and what is its function.


<html>

<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>

Thanks.

Fred
 
A

Andrew Murray

Can someone explain to me in simple terms what this html code is all about and what is its function.


<html>

<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>

Thanks.

Fred


Looks like it opens a pop-up window - where did the code come from if you didn't write it, or cut & paste from some other source? It is code generated by Frontpage Add-ins or Plug-ins??
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top