I have 2 Select Boxes...
I put an OnChange event on the First Select box....
If the first listbox' ListIndex = 2...I'd like the second two be disabled...
If the ListIndex changes again...I want to enable the second listbox...
The below code does the disabling....but does not check for listindex..help is appreciated
Code:function disablen(veld){ with (document.myForm.elements[veld]) { disabled = !disabled; } }




Reply With Quote