Created
July 7, 2011 12:00
-
-
Save kvz/1069368 to your computer and use it in GitHub Desktop.
Uncheck 200+ boxes using chrome console on sites that neither support jquery nor have an 'unselect all' function :)
This file contains hidden or 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
// In Chrome, right click => Inspect Element | |
// Goto the Console tab. | |
// Execute the following: | |
var script = document.createElement("script"); | |
script.type = "text/javascript"; | |
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(script); | |
$(':checkbox').prop('checked', false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Include in the comments:
Makes easy to run it, can even save as a bookmark.
Regards,