Skip to content

Instantly share code, notes, and snippets.

@bennyzhao
Created September 11, 2013 13:50
Show Gist options
  • Save bennyzhao/6523893 to your computer and use it in GitHub Desktop.
Save bennyzhao/6523893 to your computer and use it in GitHub Desktop.
var cuisines = ["Chinese","Indian"];
var sel = document.getElementById('CuisineList');
for(var i = 0; i < cuisines.length; i++) {
var opt = document.createElement('option');
opt.innerHTML = cuisines[i];
opt.value = cuisines[i];
sel.appendChild(opt);
}
//demo:http://jsfiddle.net/jackwanders/kGgkE/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment