-
-
Save tobyhede/aa37fb34e40346cf02c4 to your computer and use it in GitHub Desktop.
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
// VSJONP ― Very Simple JSONP | |
// ========================== | |
// | |
// Usage: | |
// fetchJsonP({ | |
// url: 'http://shit-no-cors.json', | |
// complete: function(response) { | |
// console.log(response); | |
// } | |
// }); | |
var fetchJsonP = function(options) { | |
var options = options ? options : {}, | |
script = document.createElement('script'); | |
functionName = 'jsonp' + Math.floor(Math.random() * 9999); | |
window[functionName] = function(response) { | |
if (options.complete) options.complete(response); | |
} | |
script.src = options.url + "&callback=" + functionName; | |
script.onload = function() { | |
document.body.removeChild(script); | |
delete window[functionName]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment