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

javascript - Iterate over array and calculate average values of array-parts -

iphone - Using nested NSDictionary with Picker -

objective c - Newbie question -multiple parameters -