07
Sep
Learn how to Check checkbox checked property using jQuery
If you need to check the checked property of a checkbox and perform an action based on the checked property using jQuery.
Here is the way to do it.
if ($('#isAgeSelected').is(':checked')) { $("#txtAge").show(); } else { $("#txtAge").hide(); }