Búsqueda en el Foro:
Buscar


Autor Mensaje
Mensaje19-01-2009, 23:37 (UTC)    
Título del mensaje: [Código Javascript] Abrir boton en misma ventana o aparte

Menú desplegable con la opción de abrir la web seleccionada en una ventana aparte.

Código:
<form name="mycombowopt">
<select  name="example" size=1>
    <option value="LA WEB AQUI">TEXTO AQUI</option>
    <option value="LA WEB AQUI">TEXTO AQUI</option>
    <option value="LA WEB AQUI">TEXTO AQUI</option>
  </select> <input type="button" value="Vamos!" onClick="gothere()"> <br>
  <input type="checkbox" name="windowoption" value="ON">Abrir en ventana aparte</p>
</form>

<script language="javascript">
<!--


function gothere(){
var thebox=document.mycombowopt
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>


PARA AGREGA OTRO PONE ESTO.

Código:
<option value="LA WEB AQUI">TEXTO AQUI</option>



saludos.


Ultima edición por seba37 el Mar Ene 27, 2009 10:34 am; editado 1 vez
Mostrar mensajes anteriores:   


Powered by phpBB © 2001, 2005 phpBB Group