Skip to content Skip to sidebar Skip to footer

Internet Explorer Cannot Open The Internet Site Operation Aborted, How To Fix This Error?

This code giving error in IE Internet Explorer Cannot Open the Internet Site Operation Aborted, how to fix this error? var tip = '

Most computers will open PDF documents ';

Solution 1:

To me it seems obvious that you try to modify some element before the page has finished loading. At least that's exactly what you do on your demo page. You don't wrap the code in $(document).ready() as you did in the question

Try this demo-site instead http://jsbin.com/ivuqa which correctly wraps the relevant lines in ready()


Additionally there might be some problems when using XHTML. In that case just wrap the offending javascript part like this. (CDATA to satisfy the XML validation, javascript multiline comment to hide the the cdata from browser which don't understand it and thus would fail to run the javascript.

/* <![CDATA[ */
    var tip = "<p>Most computers will open PDF documents automatically, but you may need to download <a title='Link to Adobe website-opens in a new window'";
    tip +=" href='http://www.adobe.com/products/acrobat/readstep2.html' target='_blank'>Adobe Reader</a>.</p>";
/* ]]> */

Solution 2:

Is it the infamous alert that returns a blank page in IE?

It's a known and documented IE issue.

This error usually occurs when you're trying to modify a DOM element before the page finished loading.

Try moving your script at the bottom of the page.

Since you're using document ready, I don't think this causes the problem. Maybe is it because of another script on your page?

EDIT:

You can also try to fire your function on the body's onload attribute. I just read this here.

EDIT 2: I didn't see your link. Jitter is right, you're not using jQuery's $(document).ready()


Solution 3:


Post a Comment for "Internet Explorer Cannot Open The Internet Site Operation Aborted, How To Fix This Error?"