Skip to content

Instantly share code, notes, and snippets.

@imasif
Created May 27, 2022 18:00
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 imasif/e6c925ae128ece7dd739dc54fdb3e935 to your computer and use it in GitHub Desktop.
Save imasif/e6c925ae128ece7dd739dc54fdb3e935 to your computer and use it in GitHub Desktop.
inject jquery from 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();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment