Connecting Tech Pros Worldwide Forums | Help | Site Map

Firefox submits form on hit another button...

Peet
Guest
 
Posts: n/a
#1: Dec 6 '05
Hi there,

Do somebody have some ideas about this behaviour?

I have a struts application. It has a jsp which has a form and two
buttons, one of them is html:submit, and the other is html:button.

Submit has to post the form, of course, that works correctly on all of
the browsers.
But the other button has an onclick event declared. It calls the
implemented javascript function in IE and in Opera, too, but Firefox
submits the form as well when I hit submit button...

Thanks in advance.
Peter


Tony
Guest
 
Posts: n/a
#2: Dec 6 '05

re: Firefox submits form on hit another button...


>But the other button has an onclick event declared. It calls the[color=blue]
>implemented javascript function in IE and in Opera, too, but Firefox
>submits the form as well when I hit submit button...[/color]

onclick="doSomething();return false;"

Not tested, but should work.

"...submits the form as well when I hit submit button..."
Of course - it's a submit button!

web.dev
Guest
 
Posts: n/a
#3: Dec 6 '05

re: Firefox submits form on hit another button...



Peet wrote:[color=blue]
> Hi there,
>
> Do somebody have some ideas about this behaviour?
>
> I have a struts application. It has a jsp which has a form and two
> buttons, one of them is html:submit, and the other is html:button.
>
> Submit has to post the form, of course, that works correctly on all of
> the browsers.
> But the other button has an onclick event declared. It calls the
> implemented javascript function in IE and in Opera, too, but Firefox
> submits the form as well when I hit submit button...
>
> Thanks in advance.
> Peter[/color]

When you have a button and you don't explicity declare a type for it,
the default type becomes a "submit" type. Other browsers honor this
except for IE, which defaults it to just a "button" type.

For example:

<form>
<button>
</form>

Except for IE, browsers will do a submit when the button is clicked.

<form>
<button type = "button">
</form>

Now, when you click on the button it will not do a submit.

Peet
Guest
 
Posts: n/a
#4: Dec 6 '05

re: Firefox submits form on hit another button...


Thanks a lot, Tony, it works! :o)

You wrote:
"Of course - it's a submit button! "
I thought button-type button is differs from submit-type button to be
able to make difference between them... And, with any other browsers,
the sam page has worked correctly, just Firefox needs this solution.
But returning false after onclick() has resolved my problem.
Thanks again :)

Peter

Closed Thread