Skip to content

Instantly share code, notes, and snippets.

@dacur
Created February 20, 2015 20:07
Show Gist options
  • Save dacur/64e165f0160223da2282 to your computer and use it in GitHub Desktop.
Save dacur/64e165f0160223da2282 to your computer and use it in GitHub Desktop.
Checking if 'fancy' checkboxes are checked, and reseting them to unchecked.
$('#howDidIFeelCheckboxes').find('input').each(function(){
if($(this).is(':checked')){
$(this).attr('checked', false);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment