Last active
August 5, 2016 05:15
-
-
Save 64lines/e7d9b49afd45fedf5266 to your computer and use it in GitHub Desktop.
[JAVASCRIPT] - Including Javascript Libraries to HTML document using JavaScript
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 characters
var s = document.createElement("script"); | |
s.src="https://code.jquery.com/jquery-1.12.2.min.js"; | |
document.body.appendChild(s); | |
void(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment