$(document).ready(function(){ $('#button').click(function() { $.ajax({ type: "POST", url: "carga_socio.php", data:$("#form1").serialize(), success: function(respuesta) { $('#resultado').html(respuesta); } }); return false; }); });