TheHood
September 25th, 2004, 03:55 PM
This is what I have so far. It checks to see if one check boxs is checked. I now need it to also check to if one of these two boxs are checked (APA and BorroweWillPay).
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function checkCheckBox(f){
if (f.agree.checked == false )
{
alert('You must agree to the terms inorder to continue your order');
return false;
}else
return true;
}
// End -->
</script>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function checkCheckBox(f){
if (f.agree.checked == false )
{
alert('You must agree to the terms inorder to continue your order');
return false;
}else
return true;
}
// End -->
</script>