jquery add options to select from array code example
Example 1: how to append the dropdown values by jquery each function
BY LOVE
$.each(obj , function (key, value) {
$('#GroupName').append($('<option>',
{
value: value.id,
text: value.Group_Name
}));
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
}));