Ver Mensaje Individual
  #5 (permalink)  
Antiguo 23/06/2008, 09:37
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Respuesta: Modificacion de texto contenido en una web con referencia a una 'select'

Hola de nuevo.

En IE debería funcionar sin problemas. Prueba este ejemplo:

Código:
<html>
<head>
</head>
<body>
<select onchange = "document.getElementById('algo').innerHTML = this.value">
<option value="1">1</option>
<option value="2">2</option>
</select>
<p id="algo"></p>
</body>
</html>
Saludos,