function SameBilling() {
if (document.checkout_info.same_billing.checked == true) {
document.checkout_info.checkout_billing_address.disabled = "yes";
} else {
document.checkout_info.checkout_billing_address.disabled = "no";
}
}
The following code disables the input field, but will not re-enable it if the user unchecks the checkbox...
please help
if (document.checkout_info.same_billing.checked == true) {
document.checkout_info.checkout_billing_address.disabled = "yes";
} else {
document.checkout_info.checkout_billing_address.disabled = "no";
}
}
The following code disables the input field, but will not re-enable it if the user unchecks the checkbox...
please help