Skip to content

Instantly share code, notes, and snippets.

@MarioBinder
Created October 29, 2021 12:44
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 MarioBinder/08861c6070b0ab20baa4712f2050e764 to your computer and use it in GitHub Desktop.
Save MarioBinder/08861c6070b0ab20baa4712f2050e764 to your computer and use it in GitHub Desktop.
load jquery in console
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/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();
//https://stackoverflow.com/a/7474386/119109
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment