In the following page, with Firefox the remove button submits the form, but the add button does not.
How do I prevent the remove button from submitting t
remove
return false;
You can return false at the end of the function or after the function call.
Just as long as it's the last thing that happens, the form will not submit.