iOS 8 multiple <select> serious bug on iPhone? iOS 8 multiple <select> serious bug on iPhone? ios ios

iOS 8 multiple <select> serious bug on iPhone?


I solved the problem this way:

<select>    <option></option>    <option></option>    <option></option>    (...)    <optgroup disabled></optgroup></select>

Just added an empty <optgroup> to the <select>.


I discovered another bug with select fields in iOS8 (Only on iPhone, iPad seems fine for example).

http://jsbin.com/kuhogopafe/1

How to reproduce:

  • Select 3 options
  • Unselect one option again
  • Result: instead of 2selected options, only the last unselected option is reported asselected now


The only solution I found for iphone Safari is to disable all other select boxes onfocus and re-enable all onblur. This will force the user to push Done.