JS - multiple Val on Change - TechRepublic
Question
December 3, 2019 at 11:50 PM
lyounkins

JS – multiple Val on Change

by lyounkins . Updated 6 years, 6 months ago

Trying to write JS with on Change with multiple values. Problem, PaperApplication will not hide. I need Social field to show, if they have a SSN, and to hide if not, AND if not, to show PaperApplication.

$(‘.field.SocialSecurity input[type=radio]’).on(“change”, function()
{
if($(this).val() == ‘As a U.S. Citizen, permanent resident, or temporary working resident, I have a Social Security Number.’)
{
$(‘field.SSN’).show();
$(‘.field.SSN input’).focus();
}
else if($(this).val() == ‘Due to my international student status, my residency status, or my specific visa type, I do not have a Social Security Number.’)
{
$(‘field.PaperApplication’).show();
$(‘.field.PaperApplication input’).focus();
$(‘fieldset.SSN’).hide();
}
else
{
$(‘fieldset.PaperApplication’).hide();
}
});

All Comments