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.

link|improve this question
what is jqtouch – kobe Nov 10 '10 at 8:31
@gov it is an jquery library for creating websites for iphone: jqtouch.com – mpapis Nov 10 '10 at 8:34
@mappis thanks for the info. – kobe Nov 10 '10 at 8:44
feedback

4 Answers

There is an obscure trick for this, using CSS:

label { cursor: pointer; }

And it will work on iPhone and iPad.

link|improve this answer
This deserves a sincere WTF! – pstadler Jan 17 at 15:59
feedback

Tapping on <label> does not auto-focus linked in Mobile Safari

link|improve this answer
I already have similar fix, but it's hard to believe that 'Mobile Safari' does not support this obvious functionality: $('label[for]').bind('click', function() { var $target = $('#'+$(this).attr('for')); $(':focus').blur(); if ($target[0].type==='radio') { $target[0].checked = true; } else { $target[0].focus(); } }); – mpapis Nov 10 '10 at 12:06
I finally found in the related article a better solution, but as it was not straight only up vote. – mpapis Nov 10 '10 at 12:24
feedback

add onclick="" to the label

<label for="blah" onclick="">blah</label>
link|improve this answer
feedback
up vote 0 down vote accepted

thanks to @Ivan I found better solution:

  $('label[for],input[type="radio"]').bind('click', function(e) {
    e.stopPropagation();
  });

Additionally it fixes radio buttons.

The only downside is - it stops propagation, but in my case it is ok.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.