javascript causes ie problem
-
This seems to be a documented issue with IE 6 & 7. If there’s a javascript that is too heavy, it throws up an error message (IE can’t open this site, operation aborted), then brings up the “page not loading” page. The solutions I have found online are these:
1. put defer=”defer” into the script tag (this will cause it to wait until the page is loaded to run the script).
2. Move the script to the body tag only and not subtags.
Unfortunately, the script in question is a script I got from amazon for a widget, so I can’t alter the script itself. Also, moving the script moves the widget and putting defer=”defer” in the script tag just makes it not work at all in any browser.
Has anyone else had this problem or have any good ideas?
- The topic ‘javascript causes ie problem’ is closed to new replies.