add value to select option jquery code example
Example 1: jquery add option to select
$('#selectID').append($('<option>', {
value: 1,
text: 'Option Text'
}));
Example 2: add select option jquery
$('#select').append($('<option>', {value:1, text:'One'}));
Example 3: jquery add items to select input
$("#selectList").append(new Option("option text", "value"));
Example 4: add option to select jquery
$.each(items, function (i, item) {
$('#mySelect').append($('<option>', {
value: item.value,
text : item.text
}));
});