$('.checkbox').click(function() {
if ($(this).is(':checked')) {
// Do stuff
}
});
$(".checkbox").change(function() {
if(this.checked) {
//Do stuff
}
});
$(":checkbox")
$("input[type='checkbox']")
$(document).ready(function () {
$(document).on('change', 'input[Id="chkproperty"]', function (e) {
alert($(this).val());
});
});
$('.checkbox_class').on('change', function(){ // on change of state
if(this.checked) // if changed state is "CHECKED"
{
// do the magic here
}
})