Skip to content

Instantly share code, notes, and snippets.

@russ
Created December 21, 2011 19:04
Show Gist options
  • Save russ/1507236 to your computer and use it in GitHub Desktop.
Save russ/1507236 to your computer and use it in GitHub Desktop.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$.ajax({
type: "HEAD",
async: true,
url: "http://bashme.org/phd_18yo_apriloneil2_trailer.mov",
success: function(message, text, response) {
console.log("success");
},
error: function(message, text, response) {
console.log("error");
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment