Created
August 21, 2024 15:03
-
-
Save CodeByAidan/b1e075620acd6b200656656b7ce3d75b to your computer and use it in GitHub Desktop.
bookmarklet to load jquery to use in a browser console
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
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");})() |
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
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