Hallo !
Warum ist "var land" hier immer Null?
function SendCosts(){
var land = document.order.country.value;
alert(land);
if(land=='nix'){
alert("First choose country,\nthan press payment method!");
}
else
{
document.order.submit();
}
}
auch wenn ich "var land = document.forms[0].country[2].value;"
oder var land = document.forms[0].elements[country].value;
schreibe ist im NS "land" immer Null?