1//jQuery listen for checkbox change
2$("#myCheckBoxID").change(function() {
3 if(this.checked) {
4 //I am checked
5 }else{
6 //I'm not checked
7 }
8});
1$('.myCheckbox').prop('checked', true);
2$('.myCheckbox').prop('checked', false);
1$('input[type="checkbox"]').click(function(){
2 if($(this).is(":checked")){
3 //input element where you put value
4 $("#isClicked").val("Yes");
5 // console.log($("#isClicked").val());
6 }
7 else if($(this).is(":not(:checked)")){
8 $("#isClicked").val("");
9 // console.log( $("#isClicked").val());
10 }
11});
1$(document).ready(function() {
2 //set initial state.
3 $('#textbox1').val($(this).is(':checked'));
4
5 $('#checkbox1').change(function() {
6 $('#textbox1').val($(this).is(':checked'));
7 });
8
9 $('#checkbox1').click(function() {
10 if (!$(this).is(':checked')) {
11 return confirm("Are you sure?");
12 }
13 });
14});