in reply to Re: submit button with javascript confirmation
in thread submit button with javascript confirmation

I take your point, in this instance though the target environment has a strictly controlled SOE with IE5 with javascript turned on and I was told to make the user feedback java alerts... I didn't mention it because I was trying to stay out of the javascript debate :)

What do you mean by an "ordinary button"? I still need to submit the form if the user hits OK on the java confirm popup, how else would I do that?

--
Until you've lost your reputation, you never realize what a burden it was or what freedom really is. -Margaret Mitchell

  • Comment on Re: Re: submit button with javascript confirmation

Replies are listed 'Best First'.
Re: Re: Re: submit button with javascript confirmation
by Moonie (Friar) on Aug 15, 2002 at 17:56 UTC
    you could always have a button that would go to a function and basically submit the form if the user clicked ok on the confirmation message. i.e.
    <input type="button" name="submit" value="javascript: submitForm();"> <script language="javascript"> function submitForm() { if (confirm("delete account?")) { mainForm.submit(); } } </script>
    this wasn't a very perl-y example.. but it's similar to what simon.proctor suggested.