Skip to content

Instantly share code, notes, and snippets.

@hesoyamcode
Created May 23, 2018 10:47
Show Gist options
  • Save hesoyamcode/8e1a2eb85d1856757007bec940a61b40 to your computer and use it in GitHub Desktop.
Save hesoyamcode/8e1a2eb85d1856757007bec940a61b40 to your computer and use it in GitHub Desktop.
Include JQuery into web console, just paste this script into your 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