Skip to content

Instantly share code, notes, and snippets.

@64lines
Last active August 5, 2016 05:15
Show Gist options
  • Save 64lines/e7d9b49afd45fedf5266 to your computer and use it in GitHub Desktop.
Save 64lines/e7d9b49afd45fedf5266 to your computer and use it in GitHub Desktop.
[JAVASCRIPT] - Including Javascript Libraries to HTML document using JavaScript
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