jQuery dynamically check uncheck checkbox; In this tutorial, you will learn how to get all check and uncheck multiple checkbox value using the jQuery prop() function.
how to get all checked and unchecked multiple checkbox value in jquery
You can get multiple checkboxes checked and unchecked using jQuery prop() and attr() jquery selectors.
The jQuery prop() method can set or get the properties of the selected HTML checkbox values.
Syntax of jQuery prop() Method
$("selector").prop(property);
You can also set the value of a single property.
$("selector").prop(property, newValue);
It can also be done via a function.
$("selector").prop(property, function(index, currentValue));
Example of jQuery dynamically check uncheck the checkbox
You can see that example of the prop() method, the following example You can see that the uses of the prop() method to checked or unchecked a checkbox dynamically, on button click.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Check - Uncheck Checkbox Using prop</title> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <style type="text/css"> .container{ padding: 15px; background: #28BAA2; border: 1px solid #bead18; } </style> <script type="text/javascript"> $(document).ready(function(){ $(".btn_check").click(function(){ $("#checkVal").prop("checked", true); }); $(".btn_uncheck").click(function(){ $("#checkVal").prop("checked", false); }); }); </script> </head> <body> <div class="container"> <p><b>Note:</b> Click the buttons to check or uncheck checkbox.</p> <p><input type="checkbox" id="checkVal">Here is checkbox</p> <button type="button" class="btn_check">Checked</button> <button type="button" class="btn_uncheck">Unchecked</button> </div> </body> </html>
Demo for jQuery dynamically check uncheck checkbox
Note: Click the buttons to check or uncheck checkbox.
Here is checkbox
In the above jQuery prop method example,When you click on the check button that time checkbox checked, and when you click the unchecked button that time checkbox unchecked. This example is help you dynamically checked or unchecked a checkbox using the jquery prop method.