I am trying to add strikethrough when i select a checkbox in my form (Bootstrap v3). I coded this bootply:
jQuery solution:
$('#packersOff').change(function() { if ($('#packersOff').prop('checked') ) { $('#test').css('text-decoration','line-through'); } });
select sssssssss