Skip to content

Instantly share code, notes, and snippets.

@josephmtinangi
Created June 9, 2017 11:12
Show Gist options
  • Save josephmtinangi/a95586d9826ed8dca414a7b70db69697 to your computer and use it in GitHub Desktop.
Save josephmtinangi/a95586d9826ed8dca414a7b70db69697 to your computer and use it in GitHub Desktop.
$.ajax({
url: '',
data: {
format: 'json'
},
error: function() {
console.log('error');
},
dataType: 'json',
success: function(data) {
console.log(data);
},
type: 'GET'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment