зеркало из https://github.com/mozilla/gecko-dev.git
8 строки
185 B
HTML
8 строки
185 B
HTML
|
<!doctype html>
|
||
|
<select></select>
|
||
|
<script>
|
||
|
var select = document.getElementsByTagName("select")[0];
|
||
|
var newOpt = document.createElement("option");
|
||
|
select.add(newOpt, newOpt);
|
||
|
</script>
|