how to display this question before submiting a form?
![]()
i need "yes" or "abort" for answer![]()
Samba di?
how to display this question before submiting a form?
![]()
i need "yes" or "abort" for answer![]()
Samba di?
<form onSubmit="return confirm('Are you sure?');">
Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
Code:<form onsubmit="javascript:confirm('some question');"
djr33's idea is better because it will actually stop the form from being submitted if the answer is no.
If this is a mission critical aspect of your form though, some server side method, or at least some non-javascript backup should be employed.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
alert('You have agreed to give us money!');
Well, I'm not sure what a backup method would do... I guess just notify the user. If it is critical, I'd use a checkbox instead, which is easier to integrate with both JS and PHP/etc.
Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
A back up method could be done several ways. And, as mentioned may not be needed if the situation isn't all that critical. One could present the user with a different form if javascript is disabled. Filling out that form and submitting it would only get you to a second identical looking form that is already filled out. The only difference being that there could be a header on that new page saying 'Are you sure?' or 'Is this Information Correct?' The submit button's value for that second form could be 'Yes'.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks