Created
January 26, 2019 13:15
-
-
Save shishirarora3/51f4f7355d193ac317e1e52a4ee0dbd5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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