## Check if the checkbox is checked or not. Here, checkbox is the id of checkbox. $(‘#checkbox’).on(‘click’, function(){ if ($(this).is(‘:checked’)== true) { console.log(‘Checked’); } else …
Read MoreSpread Your Knowledge
## Check if the checkbox is checked or not. Here, checkbox is the id of checkbox. $(‘#checkbox’).on(‘click’, function(){ if ($(this).is(‘:checked’)== true) { console.log(‘Checked’); } else …
Read More