Hello
I need to hide a particular option value using css based on a condition but when try to use style for that particular option nothing happen. How can I do it?
I need to hide a particular option value using css based on a condition but when try to use style for that particular option nothing happen. How can I do it?
Code:
<select name="select" class="aa"> <option value="m" selected="selected">mukesh</option> <option value="k" style="display:none;">kumar</option> <option value="mi">mishra</option> </select>
Comment