jQuery("#bottone").click(function(){ var nome = jQuery("#email").val();
jQuery.ajax({ type: "POST", url: "https://www.tecnorama.it/unsubscribe/", data: "email=" + email, dataType: "html", success: function(msg) { jQuery("#risultato").html(msg); }, error: function() { alert("Chiamata fallita, si prega di riprovare..."); } }); });