Привет
$( document ).ready(function() {
$("#btn").click(
function(){
sendAjaxForm('result_form', 'form1', 'ajax6.php');
return false;
}
);
});
function sendAjaxForm(result_form, ajax_form, url) {
jQuery.ajax({
url: url,
type: "POST",
dataType: "html",
data: jQuery("#"+ajax_form).serialize(),
beforeSend: function() {
document.write('<center><img src=\'load2.gif\' </center>')
return true;
},
success: function(html){
$("#result_form").html(html);
},
error: function(response) {
document.getElementById(result_form).innerHTML = "Error.";
}
});
}
и появляется load2.gif на экране а ajax запрос не выполняется .