Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save coffeepostal/34ca7c8a43d50bfdefcbec512a4dfcca to your computer and use it in GitHub Desktop.
Save coffeepostal/34ca7c8a43d50bfdefcbec512a4dfcca to your computer and use it in GitHub Desktop.
Chrome DevTools: Run jQuery on in the Console
var jqry = document.createElement('script');
jqry.src = "https://code.jquery.com/jquery-3.3.1.min.js";
document.getElementsByTagName('head')[0].appendChild(jqry);
jQuery.noConflict();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment