blob: 307a07376b852ae3a44eb1e68fb3b19c246a0dea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<body>
<html>
<select id="test" size="8">
</select>
<script>
var optgroup = document.createElement("optgroup");
optgroup.setAttribute('label', 'An optgroup');
var option = document.createElement("option");
var optionText = document.createTextNode("An option");
option.appendChild(optionText);
var select = document.getElementById("test");
select.appendChild(optgroup);
optgroup.appendChild(option);
</script>
</body>
</html>
|