LADYX,
$(function() {
$('[name="MyForm"]').submit(function(event) {
event.preventDefault();
var form = this;
var title = $(form).next();
$.ajax({
type: "POST",
url:"sendmail.php",
data:$(form).serialize(),
error:function(){title.html("Произошла ошибка!");},
beforeSend: function() {
title.html("Отправляем данные...");
},
success: function(result){
title.html(result);
checkThis();
}
});
})
});