views:

29

answers:

2

How can I submit a specific form using the follow code (example the id of my form is #form1).

$(".nextbutton").click(function() { submit; });
+3  A: 

Try this lets say your form id is formID

$(".nextbutton").click(function() { $("form#formID").submit(); });
JapanPro
A: 

Try the jQuery Form Plug-in

Kyle