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
You can simply get the reference of your buttons using jQuery, and prevent its propagation like below:
$(document).ready(function () { $('#BUTTON_ID').click(function(e) { e.preventDefault(); e.stopPropagation(); e.stopImmediatePropagation(); return false; });});