wallflower
Programmer
I want something like
<script language="javascript">
function final_submit()
if( document.signup_form.CARD_EXPIRE.value == "" )
{
alert( "Please enter a valid date" );
return false;
}
return true;
</script>
To check a form date before it gets swept off by the form action.
(i don't have any preconcieved ideas that the above is correct, that why I'm here, in fact it errors)
and I need the value == "" to be greater than today.
help
<script language="javascript">
function final_submit()
if( document.signup_form.CARD_EXPIRE.value == "" )
{
alert( "Please enter a valid date" );
return false;
}
return true;
</script>
To check a form date before it gets swept off by the form action.
(i don't have any preconcieved ideas that the above is correct, that why I'm here, in fact it errors)
and I need the value == "" to be greater than today.
help