I have two selection boxes in the same form. I would like to have one disabled based on some of the options that can be selected in the other selection box. I'm looking for a solution in JavaScript if possible.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You can use jQuery and do something like this
more info here http://jquery.com/ |
|||
|
|
|
And if you dont use jquery you can do it like this
<input type="checkbox" id="select1" onchange="disable()">
function disable() {
if(...) {
document.getElementById('select2').disabled='disabled';
}
}
|
|||
|
|