Skip to content

Instantly share code, notes, and snippets.

@glinesbdev
Last active August 29, 2015 14:21
Show Gist options
  • Save glinesbdev/151a2b44a4579164a475 to your computer and use it in GitHub Desktop.
Save glinesbdev/151a2b44a4579164a475 to your computer and use it in GitHub Desktop.
Basic Ajax
$.ajax({
method: 'GET',
url: 'http://mh4u-api.com/api/v1/large_monster/1',
dataType: 'json',
success: function(data) {
console.log(data); // Large Monster Data with the id of '1'
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment