Response title
This is preview!
<div data-role="fieldcontain">
<label for="site" class="select">Site:* </label>
<select id="site" name="site" tabindex="2" data-native-menu="false">
<option value="<%=NewTask.SiteID %>"><%=NewTask.SiteDescr%></option>
</select>
</div>
});
In my pc I use Chrome and Firefox browser and it work
fine and the "click" event fire as it should.
The problem is in Iphone or Android device.
the click event not fire and I can't change the option list dynamically.
Is someone familiar with this problem ?
Thanks
$(document).bind("mobileinit", function () { $.mobile.useFastClick = false; });
vclick event is needed to support touch events to make the page changes to happen faster, and to perform the URL hiding.
So you need to change something like this
$('btnShow').live("click", function (evt) {
To :
$('btnShow').live("vclick", function (evt) {
© 2013 jQuery Foundation
Sponsored by and others.