Posts by Raphael Coelho • 1 point
1 post
-
-2
votes2
answers775
viewsA: 3 forms in a single button
In the JS file try to do the following: $("#form1").submit(function(event) { action(event); }); $("#form2").submit(function(event) { action(event); }); $("#form3").submit(function(event) {…