Skip to content

Instantly share code, notes, and snippets.

@MarioBinder
Created October 29, 2021 12:44
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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