function validateEmpty(fieldObj, customAlert)
{
// Se il campo non è vuoto, ritorna true (ok)
if (fieldObj.value.length > 0) {
fieldObj.style.backgroundColor='white';
return(true);
}
if (customAlert.length > 0) alert(customAlert);
else alert("Il campo '" + fieldObj.name + "' è obbligatorio !");
fieldObj.style.backgroundColor='orange';
fieldObj.focus();
return(false); // Errore
}

Rispondi quotando