Given this html:
code
I’d like a selection of b in Select d1 to result in option 2 in select r1 to not be avaialble (removed). But if the page is refreshed or any other option is selected in d1, all options in r1 should be available.
Is this possible with Jquery? http://jsfiddle.net/dwvYY/6/
One initial problem I’m having is I can’t seem to refrence the select with the title property which my client tool (SharePoint is placing on Select tags).
Thanks.
You could disable option by index or hide it.
Here is my solution:
http://jsfiddle.net/PabZk/
Selecting options by index would be a good idea in larger lists.