mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
8 lines
235 B
HTML
8 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>
|