The checkbox checked property of a checkbox element gives you the checked state of the element. But you can also check using is() method.
<input type="checkbox" id="checkID"/>
Then using checked property you can check this:
if(document.getElementById('checkID').checked){
// checked
} else {
// unchecked
} Alternatively, you can use jQuery is() function as below:
if($("#checkID").is(':checked')){
// checked
} else {
// unchecked
} Using attr or prop method you can check the status:
$('#checkID').attr('checked'); // "checked"
$('#checkID').prop('checked'); // true You can use bind to change event instead of. You will probably still need to check whether or not the checkbox is checked:
$("#checkID").change(function() {
if(this.checked) {
//Do stuff
}
}); Read jQuery tips and tricks for more topics.
Online trading has brought ease of trading, better security protocols, and fast trade executions; however,…
Very few brands suffer from a product issue. It's a conversion issue. People enter DMart,…
The onboarding process of the retailer, distributor, or partner may soon become problematic if there…
Many of the states in the United States of America allow the use of medical…
Did you know that every time you browse this website or any other, you leave…
Online casino has gained immense popularity with the rise of online casinos. Platforms like GameZone…