/ Published in: jQuery
Operación Ajax básica con jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$.ajax({ type: "POST", url: "formulario.php", data: "nombre=Juan&apellido=Luna", success: function(datos){ alert( "Se guardaron los datos: " + datos); } });