i have this html

<ul>
    <li><form action="#" name="formName"></li>
    <li><input type="text" name="someName" /></li>
    <li><input type="text" name="someOtherName" /></li>
    <li><input type="submit" name="submitButton" value="send"></li>
    <li></form></li>
</ul>

How can i select the form that the input[name="submitButton"] is part of ? (when i click on the submit button i want to select the form and append some fields in it)

link|improve this question

feedback

3 Answers

up vote 95 down vote accepted

I would suggest using closest, which selects the closest matching parent element:

$('input[name="submitButton"]').closest("form");

Instead of filtering by the name, I would do this:

$('input[type=submit]').closest("form");
link|improve this answer
   
thanks karim ;) – kmunky Oct 25 '09 at 19:04
Thanks a lot! I was really struggling with this. – juhan_h May 24 '11 at 7:43
2  
+1 Still earning you points after 2 years. – griegs Jul 20 '11 at 1:01
3 years ;) (almost) – Sebastian Apr 16 at 13:01
May be we should add getting by index? '$("input[type=submit]").closest("form");' returns an array of forms. – sergzach yesterday
feedback

You can use the form reference which exists on all inputs, this is much faster than .closest() (5-10 times faster in Chrome and IE8).

var input = $('input[type=submit]');
var form = input.length > 0 ? $(input[0].form) : $();
link|improve this answer
You mention IE8. Does this work for versions 6, 7, and 9 as well? – Sonny Oct 27 '11 at 13:52
feedback

see also http://stackoverflow.com/questions/311579/jquery-js-how-do-i-select-the-parent-form-based-on-which-submit-button-is-clic

$('form#myform1').submit(function(e){
     e.preventDefault(); //Prevent the normal submission action
     var form = this;
     // ... Handle form submission
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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