It's me ;-)

IE message: Operation aborted

Few days ago, I’m assigned a task to fix a problem: IE showed an error message box and crashed when load a heavy page (it took about 40-50s to load completly) .

I thought, maybe cause of problem is Javascript (syntax error) and I checked whole the page. Hix, nothing happened 🙁 After I Googled, I found the main reason is:

  1. The HTML file is being parsed
  2. Script is executing
  3. The executing script attempts to add, or remove an element from an unclosed ancestor in the markup tree (not including the script block’s immediate parent element).

So I refactored code by move all JS functions call into $(document).ready( … ) (I’m using jQuery) to make sure the script will be executed after the page loaded successful. whew, the problem has been resolved 🙂

2 thoughts on “IE message: Operation aborted

Leave a Reply

Your email address will not be published. Required fields are marked *