I am binding jQuery's submit function to the form-Tag. This works fine with one Form, but if I have more than one Form, it submits Data from all Forms in the Post variable.
How can I submit only one Form?
$('form').bind('submit',function() {
var data = $('form').serializeAnything();
$.post('forms/form.ajax.submit.php',data,function(response) {
...
});