Skip to content

Instantly share code, notes, and snippets.

@guillaumegarcia13
Created March 6, 2017 08:44
Show Gist options
  • Save guillaumegarcia13/5d64f2582dfa1722d0e58abab9e05768 to your computer and use it in GitHub Desktop.
Save guillaumegarcia13/5d64f2582dfa1722d0e58abab9e05768 to your computer and use it in GitHub Desktop.
Load jQuery from console
var script = document.createElement("script");
script.setAttribute("src", "//code.jquery.com/jquery-latest.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment