Skip to content

Instantly share code, notes, and snippets.

@allenday
Created July 8, 2017 08:17
Show Gist options
  • Save allenday/606080f9ecb79933222b63b562f384bf to your computer and use it in GitHub Desktop.
Save allenday/606080f9ecb79933222b63b562f384bf to your computer and use it in GitHub Desktop.
Load jQuery to Chrome console
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