Skip to content

Instantly share code, notes, and snippets.

@phdesign
Last active June 9, 2017 01:01
Show Gist options
  • Save phdesign/b6c65baf6b303eaff5a516e6f23be7ee to your computer and use it in GitHub Desktop.
Save phdesign/b6c65baf6b303eaff5a516e6f23be7ee to your computer and use it in GitHub Desktop.
Inject jQuery onto page bookmarklet
javascript: (function(url) {
var script = document.createElement("script");
script.setAttribute("src", url);
script.addEventListener('load', function() {
var script = document.createElement("script");
document.body.appendChild(script);
console.log('jQuery injected');
}, false);
document.body.appendChild(script);
})('//code.jquery.com/jquery-latest.min.js')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment