mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
7 lines
235 B
HTML
7 lines
235 B
HTML
<link rel="match" href="reference/options-set-index.html" />
|
|
<select id="select"></select>
|
|
<script>
|
|
const select = document.getElementById("select");
|
|
select.options[0] = new Option("text");
|
|
select.value = "text";
|
|
</script>
|