Ho questo codice:
codice:
<form name="voti_utenti">
<select name="giornate_camp_coppa" class="prova" onChange="window.parent.location=document.voti_utenti.giornate_camp_coppa.options[document.voti_utenti.giornate_camp_coppa.selectedIndex].value">
<option value="-1">---------------------------------</option>
<%
Do until objRSGiornate.eof
<option value="<%=objRSGiornate("Giornata_camp_coppa")%>"><%=objRSGiornate("Giornata_camp_coppa")%></option>
<%
objRSGiornate.movenext
Loop 'Ciclo di giornate
%>
</select>
</form>
Vorrei però passare all'onChange sulla select oltre quello che già viene passato, anche un ulteriore parametro variabile, posso fare qualcosa del genere???
codice:
onChange="window.parent.location=document.voti_utenti.giornate_camp_coppa.options[document.voti_utenti.giornate_camp_coppa.selectedIndex].value"+"&parametro="+parametro
Attendo conferme o mentite...