Answers for "how to remove first option in select"

0

remove first select option jquery

$(document).on('click', 'select', function() {
   $(this).find('option').get(0).remove();
});
Posted by: Guest on June-03-2021
0

hide first option in select

<select>
   <option hidden>Choose</option>
   <option>Item 1</option>
   <option>Item 2</option>
</select>
Posted by: Guest on September-20-2021

Code answers related to "how to remove first option in select"

Browse Popular Code Answers by Language