Sindbad~EG File Manager
//inicia o jquery
$(document).ready(function() {
$('#enviar').click(function() {
var dados = $("#formContato").serialize();
//inicia uma requisicao
$.ajax({
type: 'POST',
url: 'ajax_send.php',
data: dados,
success: function(data) {
var retorno = jQuery.parseJSON(data);
if (retorno) {
var mensagem = retorno.msg;
var status = retorno.status;
if (status) {
$('.msgStatus').html("<div style='color: green; text-align: center;'>" + mensagem + "</div>");
$('input[type="text"], textarea').val('');
//$('html,body').animate({scrollTop: $(".msgStatus").offset().top}, 2000);
} else {
$('.msgStatus').html("<div style='color: red; text-align: center;'>" + mensagem + "</div>");
return false;
}
}
}
});
});
});
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists