Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RitterNorbert/616fdce9ea7cad0f978ebbb3e596e0be to your computer and use it in GitHub Desktop.
Save RitterNorbert/616fdce9ea7cad0f978ebbb3e596e0be to your computer and use it in GitHub Desktop.
include jQuery in Chrome Console
var script = document.createElement("script");
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.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