[thelist] Win XP SP2 MSIE javascript - Working now

Kasimir K evolt at kasimir-k.fi
Wed Nov 10 03:29:02 CST 2004



> On Tue, 09 Nov 2004 18:30:08 +0200, Kasimir K <evolt at kasimir-k.fi> wrote:
>>MSIE doesn't like my javascript anymore since XP SP2...

liorean wrote on 2004-11-09 19:07:
> I would guess you are affected by Object Caching
> <uri:http://www.microsoft.com/technet/prodtechnol/winxppro/maintain/sp2brows.mspx#EFAA>
> changes. 

Your guess was spot on! I had:
doc = frame_window.document;
doc.designMode = "On";

and after that the doc.open() gave the error. I changed it to:
doc = frame_window.document;
doc.designMode = "On";
doc = frame_window.document;

and now it works.

Thank you!

.k


More information about the thelist mailing list