Ver Mensaje Individual
  #5 (permalink)  
Antiguo 17/12/2007, 13:47
Avatar de agressor
agressor
 
Fecha de Ingreso: noviembre-2007
Ubicación: Knocking the Death Door..
Mensajes: 368
Antigüedad: 17 años, 2 meses
Puntos: 3
Re: Llamada a función javascript en PHP

Y por si la ocupas esta es otra opcion para ver que opcion seleccionastes..

<html>
<head>
<script type="text/javascript">
function favBrowser()
{
var mylist=document.getElementById("myList");
document.getElementById("favorite").value=mylist.o ptions[mylist.selectedIndex].text;
}
</script>
</head>

<body>
<form>
Select your favorite browser:
<select id="myList" onchange="favBrowser()">
<option>Internet Explorer</option>
<option>Netscape</option>
<option>Opera</option>
</select>
<p>You select this option: <input type="text" id="favorite" size="20"></p>
</form>
</body>

</html>

Me cuentas.. que tal te fue..

Salu2..