javascript - populate dropdownlist with an array -


i have array var mylist = new array(); , have drop down

@html.dropdownlist("yourlist", model.yourlist).  

how can fill dropdownlist using javascript.

var mylist = new array();  (i=0; i<mylist.length; i++) {     master.options[master.options.length]=new option(mylist[i].text, mylist[i].value); } 

http://www.javascriptkit.com/javatutors/selectcontent.shtml


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -