Answers for "how to check the checkbox is checked or not"

3

if checkbox is checked

if ($('#id_input').is(':checked')) { }
Posted by: Guest on March-17-2020
2

checkbox is not getting checked

<input type="checkbox" name="free" value="mon09" onClick="this.checked=!this.checked;">
Posted by: Guest on May-07-2021
3

how do i check if JQuery checkbox is checked

$('#isAgeSelected').click(function() {
    $("#txtAge").toggle(this.checked);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
  </script>
<input type="checkbox" id="isAgeSelected"/>
<div id="txtAge" style="display:none">Age is something</div>
Posted by: Guest on June-22-2020

Code answers related to "how to check the checkbox is checked or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language