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
$("form").submit(function () { return false; }); that will prevent the button from submitting or you can just change the button type to "button" instead of Which will only work if this button isn't the only button in this form.
$("form").submit(function () { return false; });