Created
January 18, 2018 08:45
-
-
Save ninja33/83d351965cec83ca26ebc6526383b636 to your computer and use it in GitHub Desktop.
a simple and pure javascript jsonp function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loadJsonp(url, callback) { | |
var callbackName = 'jsonp_callback_' + 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