Internet Explorer cannot open the Internet site, Operation aborted
This was the error I was encountering when I was trying to include a heavy javascript code which I succeded in doing after a long research. But the error made me feel dissapointed. What I could see was IE just crashing out. There are many factors to consider when using Javascript in web development. One of the major problem associated with IE (Internet Explorer) is the "Internet Explorer cannot open the Internet site, Operation aborted" error. This is one of the error mostly encountered by the IE Javascript engine when parsing the script. Whenever a Javascript code is placed inside any of the HTML tags such as ul, ol, table,div, form, blockquote, and various other tags.. which inturn is the immediate child of the <body> tag the javascript engine of the Internet Explorer fails miserably and crashes out. This is mostly seen in google maps api’s or swf files when used improperly in the HTML. There are numerous solution for this for this single error. 1.Placing the javascript code either to the top or bottom of the body tag, or in the <head></head> section.Or placing it after the body tag. 2.Using defer="defer" in the script tag can also fix the silly error. Although there are still more ways to avert this. The first point succeded in solving my problem. Any more suggestions on this would be appreciated.

