Element.select constructor - Element - dart:html library (original) (raw)
Element.select()
Creates a new <select>
element.
This is equivalent to calling new Element.tag('select')
.
Implementation
factory Element.select() => new Element.tag('select');