Link to home
Start Free TrialLog in
Avatar of davidlars99
davidlars99Flag for United States of America

asked on

Browser's strange behavior...

please take a look at this post and help if you can...
https://www.experts-exchange.com/questions/21094044/Javascript-error-message-won't-display.html

thanks!
SOLUTION
Avatar of Gerald Negrota
Gerald Negrota
Flag of Italy image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of davidlars99

ASKER

I'm using IE 6.0 on WinXP Pro, my problem is universal and I don't like any other browser , but IE because they are extremely slow, I'm develping javascript games and I have tesded every browser against my games...

BTW, gnegrota yes this code comes before function declaration

<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 AFTER ANY SCRPT TAG ANDING COMES:


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

window.open = SymRealWinOpen;

//-->
</script>




ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
nothing is seemed to solve this problem except to disabling Norton

thanks
(welcome) If your AV are filtering 'pop-up' functions ( window.open() ) an Java/VB scripts, the browser cannot do nothing. It is sup. to not use this AV features ( or make some tunning) when you develop applications like you.
Thankx ! :-)