Skip to content

Instantly share code, notes, and snippets.

@monkpit
Created July 8, 2021 19:07
Show Gist options
  • Save monkpit/f0ccdd5a73d886351c87e481f4eb9846 to your computer and use it in GitHub Desktop.
Save monkpit/f0ccdd5a73d886351c87e481f4eb9846 to your computer and use it in GitHub Desktop.
Add jQuery via console
var script = document.createElement('script');
script.src = "https://code.jquery.com/jquery-latest.min.js";
document.getElementsByTagName('head')[0].appendChild(script);
@AstragoDE
Copy link

This is cool. Thank you, mate

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