Good evening, I have the following ajax:
jQuery('#form-contato').submit(function(){
var nome = $(this).find('[name="nome"]').val();
var email = $(this).find('[name="email"]').val();
var assunto = $(this).find('[name="assunto"]').val();
var mensagem = $(this).find('[name="mensagem"]').val();
var dados = "&nome=" + nome + "&email=" + email + "&assunto=" + assunto + "&mensagem=" + mensagem;
jQuery.ajax({
type: "POST",
url: "send_contato.php",
async: true,
data: dados,
success: function(data){
openModal(nome + ", sua mensagem foi enviada com sucesso, em breve entraremos em contato!","success");
},
error: function(data){
openModal("Houve um erro","error");
}
});
return false;
});
It works on the desktop, but on the phone it always triggers an error message, and the email arrives empty.