adding elements in select tag using jquery code example
Example 1: 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
}));
Example 2: add select option jquery
Add option to a select list of picklist