Skip to content

Instantly share code, notes, and snippets.

@jesandco
Last active December 14, 2015 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesandco/5138740 to your computer and use it in GitHub Desktop.
Save jesandco/5138740 to your computer and use it in GitHub Desktop.
CORS is now enabled for ASN files. Here is a sample jQuery request for a Common Core State Standard manifest file.
$.ajax({
url: "http://s3.amazonaws.com/asnstatic/data/manifest/D10003FC.json",
success: function(data, status){
alert("success");
console.log(data);
},
error: function(){
alert("something went wrong");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment