https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7e4176185aa3b8a7ba4b8498e2c8852bb4f79714 authored by seabld on 13 April 2012, 02:26:42 UTC
Added tag SEAMONKEY_2_9b3_RELEASE for changeset FIREFOX_12_0b5_BUILD1. CLOSED TREE a=release
Tip revision: 7e41761
240470-1.html
<!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>
back to top