Skip to content

Instantly share code, notes, and snippets.

@DarkSector
Forked from zxcvbnm4709/gist:2656197
Created August 20, 2015 04:33
Show Gist options
  • Select an option

  • Save DarkSector/332d96da6954fb847717 to your computer and use it in GitHub Desktop.

Select an option

Save DarkSector/332d96da6954fb847717 to your computer and use it in GitHub Desktop.
include jQuery in Chrome Console
var script = document.createElement("script");
script.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/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