Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/06/2006, 11:45
Avatar de jahepi
jahepi
Colaborador
 
Fecha de Ingreso: diciembre-2004
Ubicación: Querétaro
Mensajes: 1.124
Antigüedad: 20 años, 1 mes
Puntos: 43
Hola Zyon!

te pongo aquí un pequeño ejemplo:

Código:
function Ver($obj_select){
    
	window.alert($obj_select.options[$obj_select.selectedIndex].value);
}
Código HTML:
<select name="select" onchange="Ver(this)">
  <option value="valor1">valor1</option>
  <option value="valor2">valor2</option>
</select> 
Un saludo!