Skip to content

Instantly share code, notes, and snippets.

@corydorning
Created May 17, 2011 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corydorning/976527 to your computer and use it in GitHub Desktop.
Save corydorning/976527 to your computer and use it in GitHub Desktop.
Uncheck checkboxes using jQuery
/*
* jQuery - Uncheck Checkboxes - 05/17/2011
* http://corydorning.com
*
* Dual licensed under 'Use it like you stole it'
* and 'I Don't Care'.
*
* Description: Uncheck any checkeboxes that might
* be checked. Simple, yet effective, particularly
* for how I needed to use it with AJAX.
*
* Example usage:
* clearCheckboxes($(':checkbox'));
*
*/
function clearCheckboxes($sel) {
$sel.each(function() {
this.checked = false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment