Skip to content

Instantly share code, notes, and snippets.

@CodeByAidan
Created August 21, 2024 15:03
Show Gist options
  • Save CodeByAidan/b1e075620acd6b200656656b7ce3d75b to your computer and use it in GitHub Desktop.
Save CodeByAidan/b1e075620acd6b200656656b7ce3d75b to your computer and use it in GitHub Desktop.
bookmarklet to load jquery to use in a browser console
javascript:(function(){var script = document.createElement('script');script.src = "https://code.jquery.com/jquery-latest.min.js";document.getElementsByTagName('head')[0].appendChild(script);console.log("jQuery injected");})()
javascript:(function() {
var script = document.createElement('script');
script.src = "https://code.jquery.com/jquery-latest.min.js";
document.getElementsByTagName('head')[0].appendChild(script);
console.log("jQuery injected");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment