I have two selection boxes. The content of the selection boxes are equal. If I change Selection1 Selection2 must be changed too, but if I change Selection2 nothing should happen. Is this possible using a javascript function and onclick.event?
Printable View
I have two selection boxes. The content of the selection boxes are equal. If I change Selection1 Selection2 must be changed too, but if I change Selection2 nothing should happen. Is this possible using a javascript function and onclick.event?
i think that is what you wantedCode:<select name="select1" onChange="select2.selectedIndex=select1.selectedIndex">
:)