Hi,
Can someone please help me with this function:
I get the following error with it~;
Error: missing ; before statement
Source File: Line: 590, Column: 41
Source Code:
} elseif (thisform.des_type.value == "0") {
TIA
Andy
Can someone please help me with this function:
Code:
function do_checks(thisform) {
if (thisform.des_type.value == "1") {
do_checks_country(thisform);
} elseif (thisform.des_type.value == "0") {
do_checks_continent(thisform);
}
}
I get the following error with it~;
Error: missing ; before statement
Source File: Line: 590, Column: 41
Source Code:
} elseif (thisform.des_type.value == "0") {
TIA
Andy