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