Hola, tengo un script que es unmenu despegable, pero carga la url en toda la pagina y no pudo enviarla a un frame concreto. Podría hacese algo, una sentencia similar al target de html? os copio el script a ver si alguien me puede ayudar. Gracias:
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function getto(form, i) {
// get the URL from options
var site = form.elements.options.selectedIndex;
// if it's not the first (null) option, go there
if ( form.elements.options[site].value != "" )
{
top.location = form.elements.options[site].value;
}
// and then reselect the null (it functions as a label)
form.elements.options.selectedIndex = 0;
}
// -->
</SCRIPT>
<FORM CLASS="Menu">
<SELECT CLASS="Menu" SIZE="1" NAME="options" onChange="getto(this.form, this.form.SELECTED)">
<Option value="" SELECTED>Secciones</option>
<Option value=""> </option>
<Option value="ind-mail.htm">correo</option>
<Option value=""> </option>
<Option value="fotos/index.htm">Fotos</option>
<Option value="relatos/index.htm">Relatos</option>
</SELECT>
</form>