Devo avere qualcosa che non va nella mia funzione per controllare più campi text con lo stesso nome:
codice:
function ctrlField(){
	//document.frResult.qta.length
	for (q = 0; q < document.frResult.qta.length; q ++){
		if (document.frResult.qta[q].value == 0 || document.frResult.qta[q].value == ""){
			alert ('Non è stata specificata la quantità.');
			return false;
		}
	}
	//return true;
	frResult.submit();
}
...non me la prende, dov'è che sbaglio?