I have a select element on my HTML page. I want to populate it with an array. as we can give an array as dataprovider to comboBox in action script. I do the following
in HTML...
<table>
<tr>
<td>
<label>Recording Mode:</label>
</td>
<td>
<select id="rec_mode">
</select>
</td>
</tr>
</table>
in javascript...
var videoSrcArr = new Array("option1", "option2", "option3", "option4", "option5");
how can I populate rec_mode element when page is loaded with VideoSrcArr? Thanks