Skip to content

Instantly share code, notes, and snippets.

@adripo
Created January 1, 2022 18:21
Show Gist options
  • Select an option

  • Save adripo/36ba25aa01f977be7c052430bd829b98 to your computer and use it in GitHub Desktop.

Select an option

Save adripo/36ba25aa01f977be7c052430bd829b98 to your computer and use it in GitHub Desktop.
Inject jQuery in the JavaScript Console
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type
jQuery.noConflict();
@adripo

adripo commented Jan 1, 2022

Copy link
Copy Markdown
Author

You can also find the Bookmark version here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment