Skip to content

Instantly share code, notes, and snippets.

@thotbox
Last active August 29, 2015 14:03
Show Gist options
  • Save thotbox/f2d35c47d44408a68a53 to your computer and use it in GitHub Desktop.
Save thotbox/f2d35c47d44408a68a53 to your computer and use it in GitHub Desktop.
JavaScript: Required Toggle
// Cable Field Required
$('#email_optin').click(function() {
if ($('#email_optin').prop('checked')) {
$('#cable_provider').attr('required', true);
$('#cable_provider_label').addClass('required-label');
}
if (!$('#email_optin').prop('checked')) {
$('#cable_provider').removeAttr('required');
$('#cable_provider_label').removeClass('required-label');
}
});
$('#email_optin_label').click(function() {
if ($('#email_optin').prop('checked')) {
$('#cable_provider').attr('required', true);
$('#cable_provider_label').addClass('required-label');
}
if (!$('#email_optin').prop('checked')) {
$('#cable_provider').removeAttr('required');
$('#cable_provider_label').removeClass('required-label');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment