Ver Mensaje Individual
  #8 (permalink)  
Antiguo 07/02/2010, 15:33
martuanez
 
Fecha de Ingreso: julio-2008
Mensajes: 109
Antigüedad: 16 años, 3 meses
Puntos: 0
Respuesta: Cargar datos via ajax/jquery según dato.

Este script me funcionó:
Código HTML:
$(document).ready(function(){
	$('#button').click(function() {
		$.ajax({ 
		type: "POST", 
		url: "carga_socio.php", 
		data:$("#form1").serialize(),
		success: function(respuesta) { 
		$('#resultado').html(respuesta);

	} 
		}); 
		return false;
	}); 
});

Muchas gracias, por tu ayuda!!!