Skip to content

Instantly share code, notes, and snippets.

@masterT
Last active August 26, 2015 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masterT/47cbe016048957dc1c47 to your computer and use it in GitHub Desktop.
Save masterT/47cbe016048957dc1c47 to your computer and use it in GitHub Desktop.
Add jQuery
if (typeof jQuery == "undefined") {
console.log("Loading jQuery!");
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js";
document.body.appendChild(script);
} else {
console.log("Let's rock!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment