Skip to content

Instantly share code, notes, and snippets.

@ilumin
Created March 11, 2012 19:13
Show Gist options
  • Save ilumin/2017717 to your computer and use it in GitHub Desktop.
Save ilumin/2017717 to your computer and use it in GitHub Desktop.
Javascript: check url
function UrlExists(url) {
var http = new XMLHttpRequest();
http.open('HEAD', url, false);
http.send();
return http.status!=404;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment