function spedisci_form(form_id){ Swal.fire({ icon: 'info', title: "Attendere", allowOutsideClick: false, allowEscapeKey: false, allowEnterKey: false, showConfirmButton: false }); $.post("/ajax.php", "OP="+form_id+"&"+$("#"+form_id).serialize(), function(json){ //console.log(json); json = JSON.parse(json); if(json.ret){ Swal.fire({ icon: 'success', title: "Messaggio inviato", text: "Verrai ricontattato nel minor tempo possibile" }).then((result) => { $("#"+form_id)[0].reset(); }); } else{ Swal.fire({ icon: 'error', title: "Operazione fallita", text: json.err }); } }).fail(function(){ Swal.fire({ icon: 'error', title: "Operazione fallita", text: "Non è possibile inviare la richiesta al momento, controlla la connessione ad internet o riprova più tardi" }); }); }