angular select enter new option code example
Example 1: jquery add option to select
//add option to select with jQuery
$('#selectID').append($('<option>', {
value: 1,
text: 'Option Text'
}));
Example 2: javascript set select option
document.getElementById("mySelectID").value="my_value";
//note: setting value in html directly does not work <select value="my_value">