Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • 1
    Very nice! I used this technique to get the values of selected options from a <select multiple>. Example: [].map.call(multiSelect.selectedOptions, function(option) { return option.value; }) Commented Apr 1, 2015 at 2:49
  • 1
    I was looking for an ES2015 solution to this, so thanks for confirming that for ... of works. Commented Nov 18, 2015 at 11:04