Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script>
function boom()
{
var select = document.getElementById("sss");
select.options.add.call(null, 0);
}
</script>
</head>
<body onload="boom();">
<select id="sss"><option>foo</option></select>
</body>
</html>