This post will discuss how to remove the selected option from the dropdown list with jQuery.

With jQuery, you can use the .remove() method to takes elements out of the DOM. To get the selected item from a dropdown, you can use the :selected property and call remove() on the matched element.

JS


HTML



Edit in JSFiddle

 
There are numerous ways to get the selected option of the select element with the :selected property:

 
Another solution is to use the eq() selector. As of jQuery 3.4, the :eq pseudo-class is deprecated and should not be used.

JS


HTML



Edit in JSFiddle

That’s all about removing the selected option from the drop-down list with jQuery.