Skip to content

Instantly share code, notes, and snippets.

@kuznetsovandrey76
Created October 9, 2018 13:15
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 kuznetsovandrey76/9a1e891c2e6c87b5be4073a80f348543 to your computer and use it in GitHub Desktop.
Save kuznetsovandrey76/9a1e891c2e6c87b5be4073a80f348543 to your computer and use it in GitHub Desktop.
ajax jQuery
$.ajax({
url: "https://raw.githubusercontent.com/kuznetsovandrey76/uniyar/master/data.json",
beforeSend: function(jqXHR, settings) {
console.log(settings)
},
success: function(data, textStatus, jqXHR){
console.log(JSON.parse(data).articles);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment