Skip to content

Instantly share code, notes, and snippets.

@hugodias
Last active April 5, 2016 16:26
Show Gist options
  • Select an option

  • Save hugodias/bad41f16293ed542c0299452a273e769 to your computer and use it in GitHub Desktop.

Select an option

Save hugodias/bad41f16293ed542c0299452a273e769 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
var registroJson = [];
var url = 'xpto';
$.getJSON(url)
.done(function(data) {
registroJson = data;
console.log(registroJson);
})
.fail(function() {
console.log('Erro');
})
.always(function() {
console.log( "Sempre vou aparecer" );
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment