Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Re: Re: submit button with javascript confirmation

by Moonie (Friar)
on Aug 15, 2002 at 17:56 UTC ( [id://190475]=note: print w/replies, xml ) Need Help??


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

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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://190475]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-25 14:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found