Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have several forms on my page. Each form is named according to the ID in the database.

<form id="spam-X" method="post">

So on my page, if there are 3 comments, there are 3 forms.

<form id="spam-1" method="post">...</form>  <form id="spam-2" method="post">...</form>   <form id="spam-3" method="post">...</form>

Now I want to run a set of functions for based on what form is submitted. So I have my submit function in jquery...

$("form#[id^='spam']").submit(function() {  

Now the problem is, I want to get the contents within this specific form that was clicked, so I'm assuming I will need the trailing ID (spam-1, spam-2, spam-3).... How do I get that value?

share|improve this question

4 Answers

You don't need to refer to the form by it's specific ID, because the function you bind to the submit handler will be called with 'this' being the DOM element of the form. You can get the text content of the form using the text() function:

$("form#[id^='spam']").submit(function() {
     // 'this' is the dom element that is being submitted
     var text = $(this).text();
});
share|improve this answer

Just use:

$("form#[id^='spam']").submit(function() {  
   var formThatWasSubmitted = this;
}

The to get the value of a particular input in that form:

var email = this.email.value;
share|improve this answer
2  
What's the jQuery wrapper for? The this value alone is a reference to the form... – Šime Vidas Sep 26 '11 at 0:11
I was under the impression this would not be a jQuery extended object when called directly from the submit function. Therefore to use find() on it it needs to be extended with $() – Clive Sep 26 '11 at 0:12
Why use .find()? Just use this.email.value – gilly3 Sep 26 '11 at 0:16
Too used to jQuery now :) – Clive Sep 26 '11 at 0:17
1  
The element is avaiable directly as a property of the form, so this.email is the control and this.email.value is its value. That saves creation of a jQuery object and two method calls and replaced it with two property lookups (so it will run about 10,000 times faster, maybe more). – RobG Sep 26 '11 at 0:19
show 1 more comment

Try using $(this).attr('id') inside the submit handler.

share|improve this answer
2  
What, this.id is to readable for you? :P – Šime Vidas Sep 26 '11 at 0:11
Well, he asked for the id, but I thought that an explanation using $(this) might hint him that this is not the jq object in that context (which is far more useful for whatever he wants to do with the form). – bfavaretto Sep 26 '11 at 0:17

You can use the $(this) inside the function to get access to the form that was activated by the click.

Then using something like $(this).find("SELECTOR").val() to narrow down to the field that you need the information from. Where you'd need to substitute SELECTOR with the name or class selector for your field inside that form.

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.