Internet Explorer cannot open the Internet site. Operation aborted.
Just got hit with this error:
And regrettably I spent a lot of time searching through Javascript in mootools javascript, and the small 2 lines of javascript Wicket adds to the page. Finally, I decided to actually google the error (which I should have done immediately).
Low and behold, because I was inlining some Javascript for the mootools Tip plugin, Internet Explorer 6 and 7 were upset because I hadn’t given them the chance to render the entire HTML yet. Easy enough to fix, and actually cleans up the code real nice, was to either add it to the body onload, or use javascript. In my case I used mootools goodness:
window.addEvent(’domready’, Site.start);
Gotta love Google. You can also check this site for some tips on avoiding the problem in the future (especially with GMaps).
RELATED POSTS
- TSSJS Vegas 2009 - Google Web Toolkit: An Introduction
- 5 Days of Wicket - The UI
- Step-by-Step Syncing Google Calendar, iCal and the iPhone
- Using growl with ant for build notifications
- 5 Days of Wicket - Setting up the project












Hi,
Can you please send me the code example of where “window.addEvent(’domready’, Site.start);” line is is included.
Thank you.
John.
Comment by John Marshall
— January 3, 2009 @ 10:47 pm
Thank you, thank you! I search for quite a while trying to find the answer to this. In my case I had blocks sprinkled throughout the page. I all the javascript code into a function and that did the trick!
Anthony
Comment by Anthony
— January 16, 2009 @ 3:46 pm
can someone please tell me how to place in these codes. This has never happened to me before and I’m so confused. Please help :] I have not a clue what to do with these codes.
Comment by Briana
— February 24, 2009 @ 7:57 pm
am having problem opening applications on face book and hi 5. my explora keeps on cutting off when it starts opening
Comment by rey
— March 11, 2009 @ 3:28 am
Can someone help by telling us where and how we are supposed to add the code :
“window.addEvent(’domready’, Site.start);”
many thx
Comment by vanni
— March 30, 2009 @ 9:19 pm
Mr. Lombardi … can you please update us on how we can fix this vexing problem? we need some examples of implementing the script … thanks
Comment by vanni
— April 12, 2009 @ 1:30 pm
@vanni
vanni, the fix was to modify how we were implementing some of our dynamic code to get loaded only when the dom was ready. That script would be put in between script tags like normal
Comment by Andrew Lombardi
— April 18, 2009 @ 9:09 am
I’ve had this error message (and went nuts), but I cracked (not my head) the code, just in time.
This is what I did –> http://zeebigtourist.blogspot.com/2009/06/internet-explorer-cannot-open-internet.html
Thanks for all the helpful info.
ZeeBigTourist
Comment by ZeeBigTourist
— June 14, 2009 @ 6:04 pm