Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/05/2008, 18:20
Avatar de [NiRVaNa]
[NiRVaNa]
 
Fecha de Ingreso: abril-2004
Ubicación: Someplace In The Middle Of Nowhere!
Mensajes: 325
Antigüedad: 20 años, 1 mes
Puntos: 6
Re: Redireccion onclick en tag select no funciona IE

A mi funciona perfectamente con lo que posteaste...

Prueba acomodando las cosas... Yo lo deje asi...
Código HTML:
<html>
<head>
<script type="text/javascript">
function cambia() {
	alert('hola');
}
</script>
</head>
<body>
<select id="auto" onchange="cambia();">
	<option value="6">a4</option>
	<option value="1"> a6</option>
</select>
</body>
</html> 
Salu2!