We are currently implementing the “Select Filter” feature provided by jQueryMobile on our web server. This works great on desktop browsers, but it doesn't work on mobile devices.
Example:
<form>
<input data-type="search" id="searchForSelect">
</form>
<select id="anotherSelect" data-filter="true" data-input="#searchForSelect">
<option value="A">Option A</option>
<option value="B">Option B</option>
<option value="C">Option C</option>
</select>
It just does not filter my content. No errors, no crashes, just no filter.
If you go to the following URL on your mobile device: Link . You will see that the filter on the select element does not work (so this is not a failure in my own code).
Has anyone else experienced this error? Is there any work?
Thanks.
Billy source
share