Skip to content

Instantly share code, notes, and snippets.

@yahelc
Created August 26, 2013 17:59
Show Gist options
  • Save yahelc/6344509 to your computer and use it in GitHub Desktop.
Save yahelc/6344509 to your computer and use it in GitHub Desktop.
jQuery.ajax({
url: "https://BSD-CLIENT-DOMAIN.com/page/spud?jsonp=?",
dataType: "jsonp",
data: {
type: "getm",
field: "firstname,lastname,email,lastlogin,source"
},
jsonp: "jsonp",
success: function(data){
console.log(data ,data.source, data.email);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment