Skip to content

Instantly share code, notes, and snippets.

@ChunAllen
Forked from paulund/add-option-to-dropdown.js
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChunAllen/025b3fe3354df99f830f to your computer and use it in GitHub Desktop.
Save ChunAllen/025b3fe3354df99f830f to your computer and use it in GitHub Desktop.
$("#selectBox").append('<option value="option6">option6</option>');
$.each(selectValues, function(key, value) {
$('#mySelect')
.append($("<option></option>")
.attr("value",key)
.text(value));
});
<select id="selectBox" name="selectBox">
<option value="option1"> option1 </option>
<option value="option2"> option2 </option>
<option value="option3"> option3 </option>
<option value="option4"> option4 </option>
</select>
$('select').children('option:not(:first)').remove();
$("#selectBox option[value='option1']").remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment