I have a simple drop down list with the options male and female and the value "gender" when nothing is selected.
How do I hide "gender" from the drop down list?
Thanks
I have a simple drop down list with the options male and female and the value "gender" when nothing is selected.
How do I hide "gender" from the drop down list?
Thanks
<option value="" disabled>Select Gender</option>
EDIT check it
jQuery("select#sel option:disabled").hide();