function addFormReqFields() { // Add * for required fields
$('form label').each(function(index) {
if ($(this).hasClass('required')) {
$(this).append('<span class="required"> *</span>');
}
});
}
$('#oh_CountryDrpDwn').change(function(){
var CountryDrpDwn = $('#oh_CountryDrpDwn').val();
if (CountryDrpDwn != 'usa')
{
$('#oh_ZipLbl').remove('<span class="required"> *</span>');
}
});
I can't seem to get this to work.
I have a form where all of the elements are initially set to required with a red asterisk. (first function).
In the second function, I have a select field (oh_CountryDrpDwn) that when the value is not equal to 'usa' I want to remove the <span class="required"> *</span> from the label.
But it doesn't seem to be triggering at all.
Any insight?
thanks.