Hello forums
I have these elements
<select id="a"></select>
<select id="b"></select>
<select id="c"></select>
<select id="d"></select>
if I changed the value of B :
$(document).ready(function(){
$('#b').change(function(){
//target c,d and set attr to disabled
});
})
how do I target all the elements after b?
Any ideas?