Connecting Tech Pros Worldwide Help | Site Map

onclick together with input type =submit

Obscurr
Guest
 
Posts: n/a
#1: Jul 20 '05
hi,

I've got a submit button, and when one clicks it, I want a confirm box
to pop up to make sure the user really wants that. The user is
supposed to be redirected to another url if he presses OK, and do
nothing if not. The way it works at the moment, is that the confirmbox
appears as it should, but whatever the user presses, the php code
continues to run. Any suggestions?

php:

echo "<INPUT type =\"submit\" name =\"test\"
ONCLICK=\"decision('sure?')\" value =\"Slett messe!\">
</TD></TR></form></table><br>";
function decision(message){
if (confirm(message)) window.location.href='http://www.vg.no';
}

obscurr
Daniel
Guest
 
Posts: n/a
#2: Jul 20 '05

re: onclick together with input type =submit



"Obscurr" <obscurr@hotmail.com> wrote in message
news:4452c409.0307030358.228d2071@posting.google.c om...[color=blue]
> hi,
>
> I've got a submit button, and when one clicks it, I want a confirm box
> to pop up to make sure the user really wants that. The user is
> supposed to be redirected to another url if he presses OK, and do
> nothing if not. The way it works at the moment, is that the confirmbox
> appears as it should, but whatever the user presses, the php code
> continues to run. Any suggestions?
>[/color]

You could replace the "submit" button with a "button" button and put

onClick="if (confirm('Really submit?')) { this.form.submit(); }"

that might work?


Daniel
Guest
 
Posts: n/a
#3: Jul 20 '05

re: onclick together with input type =submit



"Obscurr" <obscurr@hotmail.com> wrote in message
news:4452c409.0307030358.228d2071@posting.google.c om...[color=blue]
> hi,
>
> I've got a submit button, and when one clicks it, I want a confirm box
> to pop up to make sure the user really wants that. The user is
> supposed to be redirected to another url if he presses OK, and do
> nothing if not. The way it works at the moment, is that the confirmbox
> appears as it should, but whatever the user presses, the php code
> continues to run. Any suggestions?
>[/color]

You could replace the "submit" button with a "button" button and put

onClick="if (confirm('Really submit?')) { this.form.submit(); }"

that might work?


Martin Honnen
Guest
 
Posts: n/a
#4: Jul 20 '05

re: onclick together with input type =submit




Obscurr wrote:[color=blue]
> hi,
>
> I've got a submit button, and when one clicks it, I want a confirm box
> to pop up to make sure the user really wants that. The user is
> supposed to be redirected to another url if he presses OK, and do
> nothing if not. The way it works at the moment, is that the confirmbox
> appears as it should, but whatever the user presses, the php code
> continues to run. Any suggestions?
>
> php:
>
> echo "<INPUT type =\"submit\" name =\"test\"
> ONCLICK=\"decision('sure?')\" value =\"Slett messe!\">
> </TD></TR></form></table><br>";
> function decision(message){
> if (confirm(message)) window.location.href='http://www.vg.no';
> }
>[/color]

If you want to submit a form use
<form action="whatever.php" ...>
...
<input type="submit"
onclick="return confirm('Are you sure you want to submit the
form?');">



--

Martin Honnen
http://JavaScript.FAQTs.com/

Closed Thread


Similar JavaScript / Ajax / DHTML bytes