Skip to content

Instantly share code, notes, and snippets.

@hforbess
Created November 13, 2017 20:37
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 hforbess/4755c63a779830c6d014e24e19eb3229 to your computer and use it in GitHub Desktop.
Save hforbess/4755c63a779830c6d014e24e19eb3229 to your computer and use it in GitHub Desktop.
paste into chrome console to inject jquery into the page
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type (or see below for non wait option)
jQuery.noConflict();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment