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
Suppose your HTML form has id="form_id"
id="form_id"
Add this jQuery snippet to your code to see result,
$("#form_id").submit(function(){ return false; });