Cita:
Iniciado por arieljbon
Te agradezco tu info....pero lo que estoy buscando no es precisamente enlaces comunes..hace referencias a menu etc....lo que necesito es del dreamweaver INSERTAR > FORMULARIO > SELECCIONAR MENU/LISTA....de esa lista que ingreso al seleccionarla me lleva un html ...me parece que lleva algo de codigo javascript...por eso si alguien me puede ayudar. Gracias
El dreamweaver te proporciona el javascript necesario, y tiene un asistente muy preciso, pero para hacer eso, creo que manualmente sería mucho más sencillo
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript"> //<![CDATA[
/* script */
function redirigir(valor){
if (valor != '')
document.getElementById('paises').action = valor;
document.getElementById('paises').submit();
}
//]]>
<form action="#" target="_blank" id="paises"> <select onchange="redirigir(this.value);">
Salu2