Quote:
Originally Posted by alex-party
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?