Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/08/2005, 12:04
bersuitero
 
Fecha de Ingreso: abril-2004
Mensajes: 7
Antigüedad: 20 años
Puntos: 0
Bueno despues de reecorrer y matarme el cerebro buscando este tipo de menu, acá les dejo el código de exactamente lo que buscaba.....espero que les sirva también a uds.

A mi me parece muy bueno....podrían ponerlo en los FAQ's

Código PHP:
<html>
<
head>

<
script type="text/javascript">

if (
document.getElementById){
document.write('<style type="text/css">\n')
document.write('.dropcontent{display:none;}\n')
document.write('</style>\n')
}

function 
contractall(){
if (
document.getElementById){
var 
inc=0
while (document.getElementById("dropmsg"+inc)){
document.getElementById("dropmsg"+inc).style.display="none"
inc++
}
}
}

function 
expandone(){
if (
document.getElementById){
var 
selectedItem=document.dropmsgform.dropmsgoption.selectedIndex
contractall
()
document.getElementById("dropmsg"+selectedItem).style.display="block"
}
}

if (
window.addEventListener)
window.addEventListener("load"expandonefalse)
else if (
window.attachEvent)
window.attachEvent("onload"expandone)

</script>

</head>

<body>

<form name="dropmsgform">
<select name="dropmsgoption" size="1" style="width:300" onChange="expandone()">
<option selected>What is JavaScript?</option>
<option>Difference betwen Java and JavaScript</option>
<option>What is DHTML?</option>
</select>
<br>

<div id="dropmsg0">
<a class=menuitem href="/?z=restau&e=b&b4=55">Brasilera</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=49">Cantina</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=11">Caribeña</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=9">China</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=76">Contemporánea</a><br>
</div>

<div id="dropmsg1">
<a class=menuitem href="/?z=restau&e=b&b4=6">Arabe</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=73">Argentina</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=7">Armenia</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=67">Astrológica</a><br>
</div>

<div id="dropmsg2">
<a class=menuitem href="/?z=restau&e=b&b4=52">A bordo</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=74">A las brasas</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=54">Afrodisíaca</a><br>
<a class=menuitem href="/?z=restau&e=b&b4=5">Alemana</a><br>
</div>

</form>

</body>
</html> 
Saludos a todos