Skip to content

Instantly share code, notes, and snippets.

@pntrivedy
Forked from zxcvbnm4709/gist:2656197
Last active December 20, 2016 14:31
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 pntrivedy/9444f790f85d1bb10269271630b66880 to your computer and use it in GitHub Desktop.
Save pntrivedy/9444f790f85d1bb10269271630b66880 to your computer and use it in GitHub Desktop.
include jQuery in Chrome 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