![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
12/10/2007, 12:16
|
![Avatar de demiurgo_daemon](http://static.forosdelweb.com/customavatars/avatar161499_1.gif) | | | Fecha de Ingreso: diciembre-2006 Ubicación: Querétaro
Mensajes: 184
Antigüedad: 18 años, 1 mes Puntos: 2 | |
Re: onkeypress de un option Hola,
qué tal con onchange:
Código:
<select name="estados" id="estados" onchange="javascript:getCiudades(this,this.value)" >
<option>Selecciona el estado</option>
<% while(rs1.next()) { %>
<option value="<%=rs1.getString("idEdo") %>"><%= rs1.getString("Descripcion") %></option>
<% } rs1.close();%>
</select>
saludos |