Skip to content

Instantly share code, notes, and snippets.

@simsicon
Created June 3, 2014 09:30
Show Gist options
  • Save simsicon/5430754332730a365cc0 to your computer and use it in GitHub Desktop.
Save simsicon/5430754332730a365cc0 to your computer and use it in GitHub Desktop.
jsonp
$.ajax
type: 'GET'
url: "http://crossdomain.com/data"
async: true
contentType: "application/json"
dataType: 'jsonp'
jsonpCallback: 'success_jsonpCallback'
success: (response) ->
console.log( response )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment