How can I submit a specific form using the follow code (example the id of my form is #form1).
$(".nextbutton").click(function() { submit; });
How can I submit a specific form using the follow code (example the id of my form is #form1).
$(".nextbutton").click(function() { submit; });
Try this lets say your form id is formID
$(".nextbutton").click(function() { $("form#formID").submit(); });