Skip to content

Instantly share code, notes, and snippets.

@shishirarora3
Created January 26, 2019 13:15
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 shishirarora3/51f4f7355d193ac317e1e52a4ee0dbd5 to your computer and use it in GitHub Desktop.
Save shishirarora3/51f4f7355d193ac317e1e52a4ee0dbd5 to your computer and use it in GitHub Desktop.
// jquerify.js
// https://github.com/bgrins/devtools-snippets
// Add jQuery to any page that does not have it already.
(function () {
const addScript = (sc) =>{
var s = document.createElement('script');
s.setAttribute('src', sc);
document.body.appendChild(s);
}
addScript('//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment