Ok. I have this mailing list on my site. For the admin, you can choose from 3 options. Preview the email, send a test email to yourself, or send.
What i’m aiming for is if the radio button named “action”'s value equals “send” then i want a confirm box to pop up when you submit it.
this is waht i have
<script language="javascript">
<!--//
function confirm_prompt() {
if (email.action.value="send"){
return confirm("Are you sure you would like emails to be sent out?
");
}
}
//-->
</script>
and i have this on the form
<form action=“sendlist.asp” method=“post” name=“email” id=“email” onSubmit=“return confirm_prompt();”>
now, im really bad at JS, so i could be totally off.
any help?
-Naaman