Menù a tendina con collegamento al click

« Older   Newer »
  Share  
[ÎŬ³²]
view post Posted on 20/10/2010, 13:03




Aggiungete questo codice in "gestine HTML" del pannello "amministrazione":

HTML
<!-- Prova Menù Tendina -->
<script type="text/javascript">
var theTarget = "_blank";
function goThere(){
if(!document.theForm.theMenu.selectedIndex==""){
window.open(document.theForm.theMenu.options[document.theForm.theMenu.selectedIndex].value,theTarget,"");}}
</script>

<form name="theForm">
<select name="theMenu" size=1 onChange="goThere()">
<option selected value="">Vai alla pagina...
<option value="/?f=4114270">Presentazioni
<option value="/?f=4114272">Bacheca e supporto
</select>
</form>
<!-- Prova Menù Tendina -->
 
Top
0 replies since 20/10/2010, 13:03   22 views
  Share