Answers for "jquery append option to select with data attribute"

4

how to append select option in jquery

//add option to select with jQuery
$('#selectID').append($('<option>', {
    value: 1,
    text: 'Option Text'
}));
Posted by: Guest on July-31-2019

Code answers related to "jquery append option to select with data attribute"

Code answers related to "Javascript"

Browse Popular Code Answers by Language