append select option html value to select in jquery 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: Appending the option element using jquery each function
Here , object contains the list of values
$.each(obj , function (key, value) {
$('#GroupName').append($('<option>',
{
value: value.id,
text: value.Group_Name
}));