Skip to content

Instantly share code, notes, and snippets.

@Filarius
Created June 15, 2017 18:59
Show Gist options
  • Save Filarius/e900e309cb2c0beb2ab59f04246c8d0c to your computer and use it in GitHub Desktop.
Save Filarius/e900e309cb2c0beb2ab59f04246c8d0c to your computer and use it in GitHub Desktop.
Javascript load JSON from another domain
//jquery
$.getJSON( "http://domain/path?jsonp=?&callback=?", function(data) {
console.log(JSON.stringify(data));
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment