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
Set your button in normal way and use event.preventDefault like..
Remove ... ... In function... function myFunc(e){ e.preventDefault(); }