pues, haz algo como esto
Código Javascript
:
Ver originalif (validarForm()){
$.ajax({
type : 'POST',
url : '/ajax.php',
data : $('#formulario').serialize(),
success : function(response) {
$("#comment").val("");
alert('respuesta: '+response)
}
});
}
y quitale $("#comment").val(""); de tu función ValidarForm