I have the following:
- Code: Select all
if((document.order.country.value == "US") && (shippingValue == "reg"))
{
alert("International shipping option cannot be chosen on USA orders. Please change your shipping option to 1st Class or Media Mail.");
document.order.shipping[1].checked = true;
return(false);
}
The country drop down is not showing up at all in the shopping cart if the browser is Chrome. It only shows up after a failed submission in Firefox.
In Chrome all code past this statement breaks. HELP!