Skip to content

Instantly share code, notes, and snippets.

@BaskSerg
Forked from zxcvbnm4709/gist:2656197
Last active April 14, 2017 04:28
Show Gist options
  • Save BaskSerg/4bb90b915cd4b0aa16ec0b4a5b51e04d to your computer and use it in GitHub Desktop.
Save BaskSerg/4bb90b915cd4b0aa16ec0b4a5b51e04d to your computer and use it in GitHub Desktop.
include jQuery in Chrome Console
var script = document.createElement("script");
script.setAttribute("src", "https://code.jquery.com/jquery-3.2.1.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