append each in jquery dispaly in select tag code example
Example 1: jquery add items to select input
$("#selectList").append(new Option("option text", "value"));
Example 2: how to append values to dropdown using jquery
BY LOVE
$.each(obj , function (key, value) {
$('#GroupName').append($('<option>',
{
value: value.id,
text: value.Group_Name
}));