Last active
September 28, 2017 13:33
-
-
Save dcai/1a4675d26be0d4ccd12382ce07965157 to your computer and use it in GitHub Desktop.
Load jQuery and Underscore in chrome console
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
(w => { | |
const js = w.document.createElement('script'); | |
js.setAttribute("src", '//cdn.jsdelivr.net/g/[email protected],[email protected]'); | |
w.document.head.appendChild(js); | |
return 'Loaded Javascript Libraries'; | |
})(window); |
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
(w => { | |
const js = w.document.createElement('script'); | |
js.setAttribute("src", '//cdn.jsdelivr.net/g/lodash@4(lodash.min.js+lodash.fp.min.js)'); | |
w.document.head.appendChild(js); | |
return 'Loaded Javascript Libraries'; | |
})(window); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment