Changes

Jump to: navigation, search

Add Options to a Combo Box Using JavaScript

82 bytes added, 18:36, 31 July 2009
no edit summary
<pre>
function changeStartHour() { try { document.forms[0].starthour.add(new Option("", "", true, true), document.forms[0].starthour.options[0]) } catch(e) { //in IE, try the below version instead of add() document.forms[0].starthour.add(new Option("", "", true, true), 0) }
}
changeStartHour();
</pre>
0
edits

Navigation menu