Skip to content

Instantly share code, notes, and snippets.

@mccutchen
Created August 2, 2011 13:26
Show Gist options
  • Save mccutchen/1120177 to your computer and use it in GitHub Desktop.
Save mccutchen/1120177 to your computer and use it in GitHub Desktop.
jQuery JSONP request for KI API
$.ajax({
url: url,
dataType: 'jsonp',
jsonp: 'jsonp',
success: onSuccess,
error: onError
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment