Skip to content

Instantly share code, notes, and snippets.

@zerko
Created September 23, 2011 11:30
Show Gist options
  • Save zerko/1237162 to your computer and use it in GitHub Desktop.
Save zerko/1237162 to your computer and use it in GitHub Desktop.
jsonp
$(document).ready(function() {
$("#jsonpbtn").click(function() {
var surl = "http://www.fbloggs.com/sandbox/jsonp.php?callback=?";
var me = $(this);
$.getJSON(surl, function(rtndata) {
me.feedback(rtndata.message, {duration: 4000, above: true});
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment