Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/07/2007, 08:44
Avatar de skatomundo
skatomundo
 
Fecha de Ingreso: junio-2002
Ubicación: Santiago - CL
Mensajes: 2.532
Antigüedad: 21 años, 11 meses
Puntos: 125
Re: Hacer combo y al elegir una opcion ir a URL

Código PHP:
function cargaURL(valor)
{
    
window.open("http://"+valor);
}



<
select name="opcion" onChange="cargaURL(this.value)">
<
option value="www.forosdelweb.com">Foros del web</option>
<
option value="www.google.cl">Google</option>
</
select