combobox add item and select jquery code example
Example 1: add select option jquery
$('#select').append($('<option>', {value:1, text:'One'}));
Example 2: add select option jquery
Add option to a select list of picklist
$('#select').append($('<option>', {value:1, text:'One'}));
Add option to a select list of picklist