capture this on change of input type checkbox code example
Example: oncheck event jquery
$(".checkbox").change(function() {
if(this.checked) {
//Do stuff
}
});
$(".checkbox").change(function() {
if(this.checked) {
//Do stuff
}
});