Skip to content

Instantly share code, notes, and snippets.

@nikmd23
Created February 29, 2012 21:50
Show Gist options
  • Save nikmd23/1944712 to your computer and use it in GitHub Desktop.
Save nikmd23/1944712 to your computer and use it in GitHub Desktop.
JSONP Client with jQuery
$(function () {
$.ajax({
dataType: 'jsonp',
url: 'http://example.com/JSONP/API/',
success: function (data) {
console.log(data);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment