Skip to content

Instantly share code, notes, and snippets.

@kvz
Created July 7, 2011 12:00
Show Gist options
  • Select an option

  • Save kvz/1069368 to your computer and use it in GitHub Desktop.

Select an option

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 :)
// 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);
@kvz
Copy link
Author

kvz commented Jul 7, 2011

nice! : )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment