jQuery Checkbox checked property

The checkbox checked property of a checkbox element gives you the checked state of the element. But you can also check using is() method. Example of Checkbox checked: <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 […]