Answers for "select remove option not first"

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

disable 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 "select remove option not first"

Browse Popular Code Answers by Language