<div id=list_result>
<form id=form1 method=post><input type=hidden name=id value=1>Информация id1</form>
<form id=form2 method=post><input type=hidden name=id value=2>Информация id1</form>
<form id=form3 method=post><input type=hidden name=id value=3>Информация id1</form>
<form id=form4 method=post><input type=hidden name=id value=4>Информация id1</form>
</div>
$(this).attr
- всё так-же прекрасно работает. $("#form2").submit(function(evt) { //Change
evt.preventDefault();
var th = $(this);
$.ajax({
type: "POST",
url: "request2.php", //Change
data: th.serialize()
}).done(function() {
window.location = "http://.ru/thank-you";
});
return false;
});