Skip to main content
Post Made Community Wiki by Udit Bhardwaj
Source Link
xenon
  • 1.4k
  • 19
  • 35

I believe you could do this:

if ($('#isAgeSelected :checked').size() > 0)
{
    $("#txtAge").show(); 
} else { 
    $("#txtAge").hide();
}