a muchas gracias entonces el código quedaría así.
Código Javascript
:
Ver original<script languaje="javascript">
$(document).ready(function(){
$(':checkbox').click(function(){
if($(this).attr('checked') == true) {
$(this).parent().attr('style','background:#ff0000;')
} else {
$(this).parent().removeAttr('style')
// o $(this).parent().attr('style','background:#ff0000;') y elejis el color si no esta seleccionado
}
})
$(function() {
$(":checkbox:checked").each(function(i) {
if($(this).attr('checked') == true) {
$(this).parent().attr('style','background:#ff0000;')
}
else {
$(this).parent().removeAttr('style')
// o $(this).parent().attr('style','background:#ff0000;') y elejis el color si no esta seleccionado
}
});
});
});
</script>