SyntaxFix
Write A Post
Hire A Developer
Questions
Probably you can go with this code to take actions as the checkbox is checked or unchecked.
$('#chk').on('click',function(){ if(this.checked==true){ alert('yes'); }else{ alert('no'); } });