IE7 “operation aborted” error
November 23rd, 2009
Once you have “Operation aborted” error in IE7 for the website that means:
- You’ve placed JS file in the head of the document.
- This script tries to work with DOM with appendChild, createElement methods that drive IE crazy!
Solution is simple – move the JS file out of the head-tag at the bottom as (YDN advices), or at least – inside its container. For example, body-tag.