Skip to content

Instantly share code, notes, and snippets.

@TheDutchDev
Last active February 22, 2016 09:04
Show Gist options
  • Save TheDutchDev/d69139411ec0a8b7729e to your computer and use it in GitHub Desktop.
Save TheDutchDev/d69139411ec0a8b7729e to your computer and use it in GitHub Desktop.
JSON AJAX
function getSomething(somevalue) {
$.ajax({
type: "GET",
url: "somedomain.com/someurl.php?somevar=1",
dataType: 'json'
}).done(function (data) {
console.log( data );
}).fail(function (data) {
console.log( data );
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment