I have multiple forms on the page and i need to get the values of the form that is submitted, but without specifying the form.
$(document).ready( function (){
$('form').submit( function(){
return submitForm()
});
});
and in the .js file submitForm() should identify the id of the form that is submitted. How can be that done?
I get the values of the form[0], not the one that is clicked
Not sure what
submitForm()does, but I assume you’re somehow usingthisin it.If so, try:
Doing it this way should send the context of the form that was clicked to the
submitForm()call.So in
submitForm()you can refer to the correct form usingthis, or in a jQuery object using$(this).EDIT:
Here’s an example of what I mean: http://jsfiddle.net/pXwTE/