xxxxxxxxxx
1
<select id="mySelect">
2
<option value="1">One</option>s
3
<option value="2">Two</option>
4
<option value="3">Three</option>
5
<option value="4">Four</option>
6
<option value="5">Five</option>
7
</select>
1
1
xxxxxxxxxx
1
const selectEl = document.getElementById('mySelect');
2
const select = new mdb.Select(selectEl);
3
select.setValue("2");
4
select.open();
Console errors: 0