javascript option selected by value code example
Example 1: javascript select change selected
const options = Array.from(select.options);
options.forEach((option, i) => {
if (option.value === use_id) select.selectedIndex = i;
});
Example 2: javascript set html select value
// Get the html select element
var select = document.getElementById('<your select element id>');
// If you have a <option> like this:
// <option value="1">My Value Display text</option>
//Then your selected value of your select would be:
select.value = "1";