jq code for append option in select 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: add select option jquery
Add option to a select list of picklist