-
-
Save tobyhede/aa37fb34e40346cf02c4 to your computer and use it in GitHub Desktop.
Revisions
-
juliocesar created this gist
Jan 12, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ // 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]; } }