Código HTML:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'> <style> body{ font-family: 'Open Sans Condensed', sans-serif; } </style> <script> $(document).ready(function(){ $('#local').focus(); $("#formulario").submit(function(){ var cadena = $(this).serialize(); var url ='procesa.php'; alert('Datos serializados: '+cadena); $.ajax({ type: "POST", url: url, data: cadena, success: function(data){ alert(data); }, error: function(objeto, quepaso, otroobj){ alert("Error Pasó lo siguiente: "+quepaso); } }); }); }); </script> </head> <body> <table width="406" border="0" align="center" cellpadding="0" cellspacing="0" style="border:solid 1px #CCC;box-shadow: 8px 8px 15px 1px rgba(173,173,173,0.5);"> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </table> </form> </body> </html>
ojala puedan ayudarme.
Saludos.