function posts()
{
$.ajax({
url : 'mesaj.php',
type : 'POST',
dataType : 'script',
data : $(this).serialize(),
beforeSend : function()
{
$('#mesajDivi').html('Mesajiniz gonderiliyor...');
},
success : function(data)
{
//mesaj.php sayfasından dönen mesajı alabileceğiniz alan
}
});
}

 

Bir cevap yazın

E-posta hesabınız yayımlanmayacak.