Ver Mensaje Individual
  #7 (permalink)  
Antiguo 13/12/2007, 12:49
Avatar de agressor
agressor
 
Fecha de Ingreso: noviembre-2007
Ubicación: Knocking the Death Door..
Mensajes: 368
Antigüedad: 16 años, 5 meses
Puntos: 3
De acuerdo Re: Select ONCHANGE??

Muchas gracis solo que me equivoque con respecto al id del SELECT no lo tenia y como javascript trabaja con mas detalle con los ID no me habia percatado de eso pero ya quedo bien muchas gracias por la ayuda a todos.. GRACIAS..!!

Salu2..

function verseleccion()
{
var x=document.getElementById("clasification");
alert(x.selectedIndex);
}

<select onchange="verseleccion()" id="clasification" name="clasification">
<option value=""></option>
<?php RetrieveClasifications();?>
</select>