I've got two pulldown menus. I want to change the options of one menu at the time the user make selection on the other one. Is there anything like this in javascript?
thanks!!!
[sig][/sig]
Code:
<script language=javascript>
function change_menu(){
document.form1.menu2.option[1].value=....;
document.form1.menu2.option[1].text=.....;
document.form1.menu2.option[2].value=.....;
.......................
........................
}
</script>
<form name=form1>
<select name="menu1" onchange=change_menu()>
.........
</select>
<select name="menu2">
.........
</select>
</form>
[sig][/sig]