label not clickable in jqtouch
问题 With following code I can not click on labels in jqtouch (on iphone simulator and iphone itself): <ul class="rounded"> <li> <label for="user_name">Name</label> <input type="text" name="user_name" id="user_name"/> </li> </ul> It is working well in safari, I have checked this also in demo of jquery-mobile and it is working on iphone simulator, so problem seams to be strictly jqtouch specific. 回答1: There is an obscure trick for this, using CSS: label { cursor: pointer; } And it will work on