I recently added JQuery’s date-picker control to a project. In Internet Exploder, I get the following error message:
Internet Explorer cannot open the
Internet siteOperation aborted
What is causing this problem?
Answer
There was a related question earlier today:
This is a common problem.
It occurs in IE when a script tries to modify the DOM before the page is finished loading.
Take a look at what sort of scripts are executing. You’ll find that something is getting started before the page is finished loading. You can use the window.onload event to correct the problem (or one of the onDomReady library functions).