Apparently, this specific combo:
Norton Internet Security 2005 / Internet Explorer 6.0 (I assume lower versions of IE as well) blocks forced JavaScript calls from AJAX.
i.e. I use a custom CMS to pull chunks of HTML code from my database ("templates") and throw them back to the browser via AJAX (prototype 1.5) when things are clicked in the browser by the user. Prototype supports sending javascript also at the same time alongside regular HTML.
This works great everywhere, except that Norton 2005 (no other versions) blocks passed JavaScript in Internet Explorer (not Firefox).
Example ("template1") :
Code:
<div style="text-align:center;">some text</div> <script type="text/javascript">doThisFunction();</script>
new Ajax.Updater('placeholder', '/this/template1', {asynchronous:true, evalScripts:true});
Any help would be greatly appreciated, I have no other way of doing what I need to do.