Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I remove items from or add items to a select box? I'm running jQuery should that make the task easier. Below is an example select box.

<select name="selectBox" id="selectBox">
    <option value="option1">option1</option>
    <option value="option2">option2</option>
    <option value="option3">option3</option>
    <option value="option4">option4</option>	
</select>
share|improve this question

9 Answers

up vote 219 down vote accepted

Remove an option :

$("#selectBox option[value='option1']").remove();

Add an option

$("#selectBox").append('<option value="option5">option5</option>');

The problem here is not how to remove or how to add but I think you should spend more time working with jquery and take time to learn it. When you will have a better understanding of selectors, it will help you a lot.

share|improve this answer
2  
If you need to remove an option and select another: $('#selectBox').val('option2').find('option[value="option1"]').remove(); – Radu Maris Feb 8 '12 at 9:35
3  
Honestly, I think the way select boxes are manipulated via javascript is one of the most confusing things ever, even when you have a reasonably good understanding of selectors and the DOM. – Tacroy Apr 10 '12 at 0:07

You can delete the selected item with this:

        $("#selectBox option:selected").remove();

This is usefull if you have a list and not a dropdown.

share|improve this answer

I find the jquery select box manipulation plugin useful for things type of thing.

You can easily remove an item by index, value, or regex.

removeOption(index/value/regex/array[, selectedOnly])

Remove an option by
- index: $("#myselect2").removeOption(0);
- value: $("#myselect").removeOption("Value");
- regular expression: $("#myselect").removeOption(/^val/i);
- array $("#myselect").removeOption(["myselect_1", "myselect_2"]);

To remove all options, you can do $("#myselect").removeOption(/./);

share|improve this answer

To Remove an Item

$("select#mySelect option[value='option1']").remove(); 

To Add an item

$("#mySelect").append('<option value="option1">Option</option>');

To Check for an option

$('#yourSelect option[value=yourValue]').length > 0;

To remove a selected option

$('#mySelect :selected').remove(); 
share|improve this answer
window.onload = function (){

    var select = document.getElementById('selectBox');

    var delButton = document.getElementById('delete');

    function remove(){
        value = select.selectedIndex;
        select.removeChild(select[value]);
    }
    delButton.onclick = remove;    
}

To add the item I would create second select box and:

var select2 = document.getElementById('selectBox2');

var addSelect = document.getElementById('addSelect');

function add(){

    value1 = select2.selectedIndex;

    select.appendChild(select2[value1]);

}

addSelect.onclick = add;

Not jQuery though.

share|improve this answer
Thank you for a great demonstration as to why we use jQuery – JBeckton Aug 28 '12 at 22:47
1  
@JBeckton: looking back at this written 4 years ago I laugh at myself and you are right :) – Adriana Feb 7 at 11:49

This should do it:

$('#selectBox').empty();
share|improve this answer

I found two pages that seem helpful, it's written for ASP.Net, but the same stuff should apply:

  1. How to add/remove items from a dropdown list using jQuery
  2. jQuery selector expressions
share|improve this answer
i need dis using js – saidesh kilaru Jan 2 at 15:10

The following links will be helpful-

http://api.jquery.com/remove/

http://api.jquery.com/append/

share|improve this answer

Just to augment this for anyone looking, you are also able to just:

$("#selectBox option[value='option1']").hide();

and

$("#selectBox option[value='option1']").show();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.