Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var stack = ['one','two','tree'];
var sel = document.getElementById('myselect');
for (var i=0,im=stack.length; i<im; i++)
{
sel.options[i] = new Option(stack[i]);
}
[!]Or ask your tutor.
Or read the class notes.[/!]
Or google for javascript populate select.
Or read any of the other 200 odd posts on the subject in this forum.