Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Created August 26, 2023 20:13
Show Gist options
  • Save Nav-Appaiya/1102b5dad0585ee4fe5d61902351d945 to your computer and use it in GitHub Desktop.
Save Nav-Appaiya/1102b5dad0585ee4fe5d61902351d945 to your computer and use it in GitHub Desktop.
Load jquery from console (inclusde jquery via javascript)
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();
22:12:36.944
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment