[jQuery] Permission denied error with 1.1.4
I'm getting a 'Permission denied' error in IE6 when a jQuery 1.1.4 is
loading. When I swap back to 1.1.3.1, it loads properly and page works
fine. It works in Firefox with both libraries.
IE's error prompt shows the following info:
Line: 359
Char: 4
Error: Permission denied
Code: 0
but, when I use a SplineTech JavaScript debugger the code fails in a
'bindReady()' function at 'document.write(...)'
function bindReady(){
if ( readyBound ) return;
readyBound = true;
// If Mozilla is used
if ( jQuery.browser.mozilla || jQuery.browser.opera )
// Use the handy event callback
document.addEventListener( "DOMContentLoaded", jQuery.ready,
false );
// If IE is used, use the excellent hack by Matthias Miller
// http://www.outofhanwell.com/blog/index.php?title=the_window_onload_problem_revisited
else if ( jQuery.browser.msie ) {
// Only works if you document.write() it
document.write("<scr" + "ipt id=__ie_init defer=true " +
"src=//:><\/script>");
By the way, we use a Lotus Domino 6.53 server for web development.
Thanks