How can I run a function on checkbox change?
I\'m trying to write small checkbox replacing function base on that - but I\'m doing something wrong.
Code:
$('.checkbox').change(function(){
alert('changed');
})
I usedthe class you placed on the checkbox (.checkbox) for this. It detects a change in the state of the checkbox (this works for other inputs as well)
The example I included alerts 'changed' one the checkbox is clicked or unclicked.
If you want to know if it is checked or not every time then:
$('.checkbox').change(function(){
if($(this).is(':checked')){
alert('checked');
} else {
alert('not checked');
}
});