W3cubDocs

/DOM

HTMLSelectElement.type

The HTMLSelectElement.type read-only property returns the form control's type. The possible values are:

  • "select-multiple" if multiple values can be selected.
  • "select-one" if only one value can be selected.

Syntax

var str = selectElt.type;

Example

switch (select.type) {
   case 'select-multiple':
      // Multiple values may be selected.
      break;
   case 'select-one':
      // Only one value may be selected.
      break;
   default:
      // non-standard value (or this isn't a SELECT element)
}

Specifications

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 1 Yes 1 1 2 1
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 1 18 Yes 4 1 1 ?

See also

  • The <select> HTML element, implementing this interface.

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/type