| |||
drop down list Hola, quisiera que alguien me dijera o me diera el codigo para un drop down list que cuando seleccione uno de los enlaces me abra en otro tab y no en la misma pagina. He buscado y leido en google, tambien he visto par de generadores pero ninguno me da la opcion de blank que es la que abre en otro tab.Gracias. |
| ||||
Respuesta: drop down list |
| |||
Respuesta: drop down list esta es una parte del codigo que creo tiene que ver con eso: function gotoUrl(url) { if (url == "") return; location.href = url; } function newWin(url) { // url of this function should have the format: "target,URL". if (url == "") return; window.open(url.substring(url.indexOf(",") + 1, url.length), url.substring(0, url.indexOf(","))); } function fnOnChange(){ gotoUrl(selector.options[selector.selectedIndex].value); return true; } var selector = (document.getElementById)? document.getElementById("formselect1") : document.all.formselect1; selector.onchange=fnOnChange; </script></div> |