Skip to content

Instantly share code, notes, and snippets.

@varemenos
Created August 1, 2012 20:17
Show Gist options
  • Save varemenos/3230342 to your computer and use it in GitHub Desktop.
Save varemenos/3230342 to your computer and use it in GitHub Desktop.
JQuery - Label Checks Checkbox
$(function(){
$('.checkboxlabel').click(function(){
if($('.checkboxinput').prop('checked')){
$('.checkboxinput').removeAttr('checked');
}else{
$('.checkboxinput').attr('checked', true);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment