I have a set of listboxes
Here i want to readonly the particular options i.e
<select name="list" id="l1">
<option value="1" selected="selected" >1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="test">test</option>
<option value="test2">test2</option>
</select>
In the above list box i want to restrict the 'test' and 'test2 ' options as read only. User should not select these two options ('test', 'test2'). Is it possible in jquery
Please do the needful. Thanks