 
			
				14/01/2011, 06:00
			
			
			     |  
      |    |    |    Fecha de Ingreso: diciembre-2009  Ubicación: Misiones  
						Mensajes: 867
					  Antigüedad: 15 años, 11 meses Puntos: 65     |        |  
  |      Respuesta: Rescatar dos id con funcion de jquery          
Código HTML:
 Ver original        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>           $(function(){             $("#Select2").change(function(){                 Obra();             });               function Obra(){                 id_obra = $('#Select1').val();                 id_cliente = $('#Select2').val();                 alert(id_obra + " " + id_cliente);             }         });         
                |