The following JScript adds an array of options to a select box (provided the select box is not in a form):
<code>for (u=0; u<Count+1; u++)
if (u==0) {
var oOption=document.createElement("OPTION");
oSelect.options.add(oOption);
oOption.innerText = (tempArray[u]);
oOption.value =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.