This error shows up when the page loads (or tries to load). There are many scenarios that can cause this error which occurs in IE. Microsoft has even issued a patch for solving it.
This error is being caused by calling a piece of Javascript within a page (after the tag). Adding the defer=”defer” tag to the script quickly resolves the issue.
JavaScript
1 |
<script defer="defer" type="text/javascript" src="src goes here">/*code goes here*/</script> |
Hope this helps someone! 🙂