Skip to content

Instantly share code, notes, and snippets.

@gecbla
Created February 22, 2017 11:34
Show Gist options
  • Save gecbla/c6131f2a4fb7e09f23614078924b957c to your computer and use it in GitHub Desktop.
Save gecbla/c6131f2a4fb7e09f23614078924b957c to your computer and use it in GitHub Desktop.
Dynamicly add jQuery to Chrome Dev Tools
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