Skip to content

Instantly share code, notes, and snippets.

@carlosmolano
Created May 30, 2018 04:46
Show Gist options
  • Select an option

  • Save carlosmolano/c8859a20ba2a956fd37c0a841a39e0ff to your computer and use it in GitHub Desktop.

Select an option

Save carlosmolano/c8859a20ba2a956fd37c0a841a39e0ff to your computer and use it in GitHub Desktop.
$.ajax({
type: "GET",
url: "https://swapi.co/api/people/",
dataType: "json"
}).done(function(data){
console.log(data);
}).fail(function(){
console.log("Error");
}).always(function(){
console.log("Termino");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment