Hello,
I have a simple form...
<form>
<select name="foo" multiple>
<option value="1">one</option>
<option value="2">two</option>
<option value="3">three </option>
</select>
<input type="text" name="boo" DISABLED>
<input type="text" name="goo" DISABLED>
</form>
When a user chooses any of the options in the "foo" multiselect, as
long as one of them is value 2, I need to enable the fields "boo" and
"goo".
Anyone have any tips? Can this be done? Thanks!
I have a simple form...
<form>
<select name="foo" multiple>
<option value="1">one</option>
<option value="2">two</option>
<option value="3">three </option>
</select>
<input type="text" name="boo" DISABLED>
<input type="text" name="goo" DISABLED>
</form>
When a user chooses any of the options in the "foo" multiselect, as
long as one of them is value 2, I need to enable the fields "boo" and
"goo".
Anyone have any tips? Can this be done? Thanks!
Comment