Skip to content

Instantly share code, notes, and snippets.

@gracefullight
Created December 22, 2016 09:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gracefullight/bc73ef33a2adc53975763d15cc7b509c to your computer and use it in GitHub Desktop.
Save gracefullight/bc73ef33a2adc53975763d15cc7b509c to your computer and use it in GitHub Desktop.
function jsonp(url, callback) {
var callbackName = 'jsonp_' + Math.round(100000 * Math.random());
window[callbackName] = function(data) {
delete window[callbackName];
document.body.removeChild(script);
callback(data);
};
var script = document.createElement('script');
script.src = url + (url.indexOf('?') >= 0 ? '&' : '?') + 'callback=' + callbackName;
document.body.appendChild(script);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment