View Single Post
Old 03-15-2007, 05:52 AM   #6 (permalink)
internetgal
Google Freak
 
internetgal's Avatar
 
Join Date: Feb 2007
Posts: 340
Thanks: 7
Thanked 9 Times in 8 Posts
internetgal is on a distinguished road
Quote:
Originally Posted by alex-party View Post
I'm pretty much sure that your javascript runs IE into infinite loop:
This is your line:
for(x in document.write){document.write(x);}
....what are you trying to achieve by this?

If you trying to print out DOM structure, this will work for you:
for(x in document){document.write(x+'<br/>');}
Thanks alex-party for your answer. Is there any other way to help solve this problem?I mean...yesterday i found the same problem with IE7 while calling for a meeting.What do you suggest?
internetgal is offline   Reply With Quote