<label for="wpv-english-name">English Name<br/><span style="font-size: 0.8rem">Click, start typing name, or scroll to plant</span></label>
<select id="eng-name" class="chosen-select" required onchange="window.location.href=this.value" name="wpv-english-name">
<option value="" disabled selected hidden>Select plant from list</option><br/>
[xyz-ihs snippet="select-options-english-name"]
</select>
and js:
jQuery(document).ready(function($){
$(".chosen-select").chosen({
search_contains: false,
enable_split_word_search: false
});
$('#bot-name').css("max-height","50px");
$(".chosen-datalist").chosen({
search_contains: false,
enable_split_word_search: false
});
$('#bot-list').css("max-height","50px");
});
I'm using the "Chosen for wordPress" plugin which gives me a pretty select dropdown with autocomplete search and this works fine on desk/laptop. Problem is the plugin (Chosen for wordpress) does not work on Android or iPhone mobile devices.
Can you suggest a workaround or alternative plugin that is mobile friendly.
Any help much appreciated
Thanks