I have this for my checkbox,
$('.cuttingCheckbox').change(function() {
if (this.checked) {
alert('checked');
} else {
alert('unchecked');
}
});
I want to disabled it right after the user check the checkbox. Please help me on how to do this. I know this is very simple but im very new on this stuff.