1//using plane javascript
2if(document.getElementById('on_or_off_checkbox').checked) {
3 //I am checked
4}
5
6//using jQuery
7if($('#on_or_off_checkbox').is(':checked')){
8 //I am checked
9}
1$('.myCheckbox').prop('checked', true);
2$('.myCheckbox').prop('checked', false);
1$(document).ready(function() {
2 //set initial state.
3 $('#textbox1').val($(this).is(':checked'));
4
5 $('#checkbox1').change(function() {
6 if($(this).is(":checked")) {
7 var returnVal = confirm("Are you sure?");
8 $(this).attr("checked", returnVal);
9 }
10 $('#textbox1').val($(this).is(':checked'));
11 });
12});
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});