Skip to content

Instantly share code, notes, and snippets.

@sebj54
Created August 5, 2021 14:37
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 sebj54/83eca8f7ce4cb214f6accd0c9a184de4 to your computer and use it in GitHub Desktop.
Save sebj54/83eca8f7ce4cb214f6accd0c9a184de4 to your computer and use it in GitHub Desktop.
Add jQuery to a page in browser
var script = document.createElement('script');
script.src = 'https://code.jquery.com/jquery-3.6.0.min.js';
document.head.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment