Colleagues. I'm trying to clear fields after submitting a form, but I'm not getting it. See:
$(document).ready(function() {
$("#resposta").ajaxStart(function(){
$(this).html("Mensagem sendo enviada, por favor aguarde...");
}
);
$("#submit").click(function() {
var nome = $("#nome").val();
var email = $("#email").val();
var assunto = $("#assunto").val();
var mensagem = $("#mensagem").val();
$.post('enviar.php', { nome: nome, email: email, assunto: assunto, mensagem: mensagem, contato: true }, function(data) {
if (data !== false) {
$("#resposta").html(data);
}else{
$("#nome").val("");
$("#email").val("");
$("#assunto").val("");
$("#mensagem").val("");
}
});
return false;
});
});
I tried the following ways and it also did not work:
$("#form")[0].reset();
and
$("#form").trigger("reset");