Select

Ionic's select is styled so its appearance is prettied up relative to the browser's default style. However, when the select elements is opened, the default behavior on how to select one of the options is still managed by the browser.

Each platform's user-interface will be different as the user is selecting an option. For example, on a desktop browser you'll see the traditional drop down interface, whereas Android often has a radio-button list popup, and iOS has a custom scroller covering the bottom half of the window.

<divclass="list"><labelclass="item item-input item-select"><divclass="input-label">
      Lightsaber
    </div><select><option>Blue</option><optionselected>Green</option><option>Red</option></select></label></div>