To include personalized options values in a select picker with Bootstrap, you can follow these steps:
<select class="form-select" id="myselect">
</select>
let myOptions = [
{ value: "option1", text: "Option 1" },
{ value: "option2", text: "Option 2" },
{ value: "option3", text: "Option 3" },
];
let select = document.getElementById("myselect");
myOptions.forEach(function(option) {
let newOption = document.createElement("option");
newOption.value = option.value;
newOption.innerHTML = option.text;
select.appendChild(newOption);
});
window.addEventListener("load", function() {
let select = document.getElementById("myselect");
myOptions.forEach(function(option) {
let newOption = document.createElement("option");
newOption.value = option.value;
newOption.innerHTML = option.text;
select.appendChild(newOption);
});
});
Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss
Asked: 2023-03-08 11:00:00 +0000
Seen: 6 times
Last updated: Aug 16 '21
Is it feasible to utilize a Toggle Button to switch among multiple classes exceeding 2?
What is the process for generating a dynamic subdomain/URL using vue.js?
How can I create a transition on click using CSS without the need for JavaScript?
How can the style of the loader be modified while the form submission is being processed?
I'm attempting to develop a Javascript-based comments section for my website.
What are some feasible methods to enable MIDI file playback on a web browser?