$.fn.lerPagina = function(pagina,metodo) { var returno = $("div#center").load(pagina); $("div#center").ajaxComplete(function() { if(metodo == "toUp") { $(".metodo").html("Enviar pelo do texto"); $(".metodo").attr("href", "index.php")
}
}); return returno;}
$.fn.loading = function() { $(this).ajaxSend(function(){ $(this).html("<center><img src='images/loading.gif' alt='Carregando...' /></center>");});}
$.fn.enviar = function(id) { params = $(id.elements).serialize(); $.ajax({ type: 'POST', url: id.action, data: params, success: function(resultado){ window.location.href = resultado;}
})
return false;}
$(document).ready(function() { $("div#center").loading(); $("#formE").bind("submit", function(){ $(this).enviar(this);}); $("ol li.script p:even").addClass("even");}); 