DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: jQuery

jQuery Checkbox checked property

Share

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 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.

Namaste UI

For any types of queries, you can contact us on info[at]namasteui.com.

Recent Posts

6 Common Injuries After a Motorcycle Accident

Motorcycle accidents often lead to severe injuries because riders have minimal protection compared to drivers…

3 days ago

How Automation And SEO Can Improve Customer Experience

No business owner starts his or her business with the hope of making losses. Everyone…

3 days ago

5 Effects of a Car Accident

Car accidents can be traumatic, and the physical and psychological aftermath of a car accident…

5 days ago

How Worker’s compensation insurance Works?

Worker's compensation insurance deals with all those employees that get work-related injury or illness. When…

5 days ago

Why Mobile-First Stores Win: The Complete Guide to Mobile Commerce UX

Mobile commerce is no longer a trend. It is the main stage where buyers make…

5 days ago

What are the Benefits of Artificial Intelligence in Education?

The field of education welcomes and recognizes AI's potential to provide a more immersive learning…

5 days ago