Closed jahidHn closed 8 years ago
Try moving the category-filters-container1 ID to an element that wraps around the select field instead of on the select field itself like the following. I didn't test it but that's what's different about your code vs. the example file.
<form id="bh-sl-user-location" method="post" action="#">
<div class="bh-sl-filters-container">
<div id="category-filters-container1" class="bh-sl-filters">
<select name="category">
<option value="">Please select you choice</option>
<option value="Local Attractions">Local Attractions</option>
<option value="recreations">Recreations</option>
<option value="shopping">Shopping</option>
<option value="business">Business</option>
<option value="transportation">Transportation</option>
<option value="food">Food & Dining</option>
</select>
</div>
</div>
</form>
Basically touch events are not set for some reason. The below change in the library worked for me.
In documentCancelEvents() , click and keyup events are handled. Add 'touchend' to it. That should do the trick.
I have use these codes:
`