Skip to content

Instantly share code, notes, and snippets.

@cggaurav
Created October 21, 2013 20:08
Show Gist options
  • Save cggaurav/7090095 to your computer and use it in GitHub Desktop.
Save cggaurav/7090095 to your computer and use it in GitHub Desktop.
JSONP
<script>
(function() {
var api = "y.com?callback=";
$.getJSON(api, jsonData)
.done(function(data) {
Do whatever you want
});
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment