Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

$(".nextbutton").click(function() { submit; });
share|improve this question
This question is a duplicate of stackoverflow.com/questions/1200266/submit-a-form-using-jquery, and probably many more. – mkoistinen Sep 20 '10 at 14:03

5 Answers

Try this lets say your form id is formID

$(".nextbutton").click(function() { $("form#formID").submit(); });
share|improve this answer
13  
Isn't "form#formID" a bit redundant? "#formID" would be sufficient, right? – Andy Groff Dec 7 '11 at 0:41
10  
Yes, only the ID would suffice. But prepending it with the tagname speeds up the search for the item. If you add it, only <form> element will be evaluated until the correct ID is found. Granted, most webpages don't have that much HTML to actually have a delay in searching, but it still is better practice to prepend the tagname if you know it. – Flater Jul 11 '12 at 10:09
according to the documentation here api.jquery.com/submit this will add a submit listener on the form, not actually submit it. the submit function is not the same on a jQuery object and on a DOM element. – challet Jan 14 at 16:06
This definitely submits the form.... in this case, with id 'formID' – alexjamesbrown Jan 14 at 16:20

We can also try :

   $("#myformid").submit(function(){
        //perform anythng
   })
share|improve this answer
according to api.jquery.com/submit , this will only add an event listener – challet Jan 14 at 16:08

You don't really need jQuery to do that smoothly. Do it like this:

$(".nextbutton").click(function() { 
   document.forms["form1"].submit();
});
share|improve this answer
40  
funny, cause you use jquery in your answer that says you don't need jquery? – Claudiu Apr 10 '12 at 17:39
3  
I guess he meant the part of submitting the form :) – msanjay Apr 24 '12 at 11:44
1  
.submit() doesnt work for me. says property submit is not a function – kommradHomer Apr 24 '12 at 12:07
1  
doesn't work. says "submit is not a function" – FireCoding May 24 '12 at 12:44
1  
This is true but if you've got jQuery available as a tool for selecting DOM elements, you might as well be consistent. Otherwise you're introducing redundancy. – Rimian Aug 31 '12 at 3:08
show 1 more comment

If you have only 1 form in you page, use this. You do not need to know id or name of the form. I just used this code - working:

document.forms[0].submit();
share|improve this answer

Since a jQuery object inherits from an array, and this array contains the selected DOM elements. Saying you're using an id and so the element should be unique within the DOM, you could perform a direct call to submit by doing :

$(".nextbutton").click(function() { 
  $("#formID")[0].submit();
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.