JQuery - Label Checks Checkbox
$(function(){ $('.checkboxlabel').click(function(){ if($('.checkboxinput').prop('checked')){ $('.checkboxinput').removeAttr('checked'); }else{ $('.checkboxinput').attr('checked', true); } }); });