add option to select jquery code example

Example 1: jquery add option to select

//add option to select with jQuery
$('#selectID').append($('<option>', {
    value: 1,
    text: 'Option Text'
}));

Example 2: jquery add items to select input

$("#selectList").append(new Option("option text", "value"));

Example 3: add option to select jquery

$.each(items, function (i, item) {
    $('#mySelect').append($('<option>', { 
        value: item.value,
        text : item.text 
    }));
});

Example 4: jquery insert option into select

$('#ID_DO_SELECT').append('<option value="valor">texto</option>');

Example 5: To append dropdown option using jquery

$('#ddlGroup').append(new Option('Select group', '0'));

Example 6: add select option jquery

Add option to a select list of picklist

Tags:

Php Example