// JavaScript Document
$(document).ready(function(){
var cargando = $("#cargando");
var destino = $("#destino");
var formulario = $('#form-inicio');
formulario.submit(function(evento){
evento.preventDefault();
cargando.show();
//generar datos
var datos = formulario.serialize();
//pedido ajax
var pedido = $.ajax({
method: "POST",
url : 'inc/email.php',
data : datos,
cache : false
});
//cuando el pedido esta listo...
pedido.done(function(resultado){
cargando.hide(); //ocultar cargando
destino.html(resultado); //cargar el resultado
});
//limpiar el formulario
/*formulario.each(function(){
this.reset();
});*/
});
});
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.