Published
- 1 min read
remove first select option jquery
The solution for this is noted below
remove first select option jquery
Solution
$(document).on('click', 'select', function () {
$(this).find('option').get(0).remove()
})
Try other methods by searching on the site. That is if this doesn’t work