Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

6
  • 1
    It works, but doesn't really do what I want -- a failure in that case would never fire an event. I don't want to have to poll for a variable and, if it's still false after a few seconds, fire the on-fail callback.
    – David
    Commented Feb 11, 2009 at 21:43
  • What kind of error are you trying to retrieve? Failure to load? Failure to execute the javascript in nonexstant.js? HTTP Response Error? Please be more descriptive. Commented Feb 11, 2009 at 21:45
  • Any of the above would be good. I specifically care about a 404 error, though.
    – David
    Commented Feb 11, 2009 at 21:50
  • 404, meaning you want to check if the file nonexistant.js doesn't exist? But if it does you want to check if it returned no error? Commented Feb 11, 2009 at 21:52
  • Hey David, you should be able to assume that if this.readyState/... is not true, then the script failed to load. Basically an onError.
    – Cody
    Commented Aug 16, 2012 at 23:44