How to: Remove Options from One Select Box and retain One Option.

jquerylfeature1-3881106

How to – One can easily remove options of a select box from HTML and append it to another selected by making use of simple jQuery functions such as append(), remove(). Nevertheless, when dealing with Select Element one important thing you should bear in mind is that though modifying the select element is not different from other DOM elements but some basic things should be kept in mind such as not to use the DOM directly but rather create HTML strings instead.

With jQuery remove() and append() methods for select elements, what was once a headache in the park has become a walk in the park.


$('#selectBox').find('option').remove()
.end().append('text')
.val('any');
Scroll to Top