$(function(){ $("#cadastrar").click(function(){ $("#formulario_news").hide("slow"); beforeSend:$("#carregando_news").show("slow"); var email = $("#email").val(); $.post("http://www.atividadeonline.com.br/newsletter/cadastro.php",{email: email}, function(pegar_retorno){ complete:$("#carregando_news").hide("slow"); $("#retorno").show("slow").html(pegar_retorno); $("#voltar").click(function(){ $("#retorno").hide("slow"); $("#formulario_news").show("slow"); }); }); }); });