mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
7 lines
185 B
HTML
7 lines
185 B
HTML
<!doctype html>
|
|
<select></select>
|
|
<script>
|
|
var select = document.getElementsByTagName("select")[0];
|
|
var newOpt = document.createElement("option");
|
|
select.add(newOpt, newOpt);
|
|
</script>
|