## we can check by using this
$("input.checkbxclass[ type=checkbox]").click( function(e){
console.log("Selected");
});
## we can check by using this also
$("input:checkbox.checkbxclass").click(function(e){
console.log("Selected");
});
Note: here,
checkbxclass is class of checkbox
we can check by using any of above function