RSS
 

IE7 “operation aborted” error

23 Nov

Once you have “Operation aborted” error in IE7 for the website that means:

  1. You’ve placed JS file in the head of the document.
  2. 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.

 

Leave a Reply