come posso verificare se un checkebox è stato checcato??
Ho provato con is(":unchecked") ma nulla.
come posso verificare se un checkebox è stato checcato??
Ho provato con is(":unchecked") ma nulla.
direttamente dal selettore
$('input[type=checkbox]:not(:checked)')
o con una scrematura in base "not"
$('input[type=checkbox]').not(':checked')