Just a quick update. I found a solution to the bug. It turns out that "javascript:void(0)" isn't considered "secure content" in IE. I changed that to "'blankscriptfile.js'" and made a blank script file (names blankscriptfile.js) and it worked fine. Just for the record, I modified:
document.write("<scr" + "ipt id=__ie_init defer=true " + "src=javascript:void(0)><\/script>"); to read: document.write("<scr" + "ipt id=__ie_init defer=true " + "src='blankscriptfile.js'><\/script>"); Of course, I don't think including a blank file is the optimal situation (even if it doesn't increase the download at all). But at least I have a solution in place. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/