$('.stlchek').click(function(){ if($(this).children('input:checked').length) { $(this).css('backgroundColor','red'); $(this).children('input').removeAttr('checked'); } else { $(this).css('backgroundColor','black'); $(this).children('input').attr('checked','checked'); } });
$(this).children('input').removeAttr('checked');
$(this).children('input').attr('checked','checked');