Menu Desplegable


TEXTO DEL BOTÓN - Escriban aquí el texto que dirá el botón que hay que darle para ir a la página. Pueden colocar una especie de Ir - Go! - Etc.

<option value="URL DE PAGINA 1">NOMBRE 1</option>
Esa parte del código representa una opción del menú. Pueden agregar o quitar opciones así como qgregan o quitan renglones, modificando la url de la página que se abrirá el nombre de la opción.

Coloca el código donde quieras que aparezca el menú de opciones.


<form name="Ayudaparatuwebsite">
<select name="example" size=1>
<option value="URL DE PAGINA 1">NOMBRE 1</option>
<option value="URL DE PAGINA 2">NOMBRE 2</option>
<option value="URL DE PAGINA 3">NOMBRE 3</option>
</select>
<input type="button" value="TEXTO DEL BOTÓN" onClick="gothere()"> <br>
<input type="checkbox" name="windowoption" value="ON"> ¿Abrir en nueva ventana?</p>
</form>
<script language="javascript">
function gothere(){
var thebox=document.nixoweb
if (thebox.windowoption.checked){
if (!window.newwindow)
newwindow=window.open("")
newwindow.location=
thebox.example.options[thebox.example.selectedIndex].value
}
else
location=
thebox.example.options[thebox.example.selectedIndex].value
}
</script>



EJEMPLO




¿Abrir en nueva ventana?





Que te pareció este aporte?

Twitter Facebook

 
| |