Skip to content

Instantly share code, notes, and snippets.

@lsmith
Created November 5, 2009 23:16
Show Gist options
  • Select an option

  • Save lsmith/227500 to your computer and use it in GitHub Desktop.

Select an option

Save lsmith/227500 to your computer and use it in GitHub Desktop.
var options = '', i, len;
for (var i = 0, len = ddActionsMenuData.length; i < len; ++i) {
options += '<option value="' + ddActionsMenuData[i].value + '">' +
ddActionsMenuData[i].text + '</option>';
}
var div = document.createElement('div');
div.innerHTML = '<select name="foo">' + options + '</select>';
var sel = div.firstChild;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment