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 compatibility

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 1.0 (Yes) 1.0 (1.7 or earlier) 1.0 1.0 1.0
Feature Android Chrome Edge Firefox Mobile (Gecko) Firefox OS IE Phone Opera Mobile Safari Mobile
Basic support 1.0 1.0 (Yes) 1.0 (1) 1.0 1.0 1.0 1.0

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