Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|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

4 Answers

There is an obscure trick for this, using CSS:

label { cursor: pointer; }

And it will work on iPhone and iPad.

share|improve this answer
1  
This deserves a sincere WTF! – pstadler Jan 17 '12 at 15:59

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

share|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

add onclick="" to the label

<label for="blah" onclick="">blah</label>
share|improve this answer
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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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