Question about cycling through email form and checking first if email drop has been selected then moving onto if adding a country has been filled in, but I want to have drop menu checked first and then if nothing is checked then if the add country is filled in then go ahead and proceed otherwise return Alert.
country is dropdown
new**** is new country text field
if (country.selectedIndex == false) {
Selection.setFocus(country);
Alert.show("Please select your country or add country.", "Error", Alert.OK);
return false;
} else {
if (new****.text.length == true) {
}
}
Can anyone give me some hinty. thanks in advance.
MT