Published
- 1 min read
jquery remove all options but first
The solution for this is noted below
jquery remove all options but first
Solution
yourSelect.find('option').not(':first').remove();
Try other methods by searching on the site. That is if this doesn’t work