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

Tapping on <label> does not auto-focus linked in Mobile Safari but If an empty function as clickhandler is defined like this document.getElementById("test_label").onclick = function () {}; solves the problem.

This is the full source code.

<body>
    <input type="checkbox" id="test" name="test">
    <label for="test" id="test_label">This is the label</label>
    <script>
      document.getElementById("test_label").onclick = function () {};
    </script>
</body>

Do you know why it works?

share|improve this question
because every software has bugs (except "hello world"... sometimes). en.wikipedia.org/wiki/Software_bug / cs.tau.ac.il/~nachumd/verify/horror.html – oezi Sep 9 '11 at 8:26
Can you post your html? Is it <label for="someId">Tap here</label><input id="someId" ... /> – mplungjan Sep 9 '11 at 13:17
Thanks for question. Was looking for a workaround that bug. This onclick saved me :) If you filed a bug in bugreport.apple.com , let us know what they answered you. – RaphaelDDL Jan 25 '12 at 18:54

5 Answers

up vote 3 down vote accepted

It looks like you found a bug in iOS Safari. Congratulations! Finding and reporting bugs is addictive.

You can report this and other bugs to Apple at https://bugreport.apple.com/. Apple might not follow up immediately, but at some point in the future they should notify you that it was a duplicate of an existing bug, that they don’t consider it a bug, or (if you’re lucky) that you should test it again in a new version of iOS.

In the mean time, hold onto this workaround — you’ll need it.

share|improve this answer

We were able to work around this issue at Etsy by simply adding this single line of code to our global javascript file.

$('label').click(function() {});

We are using the xui micro js library and that line simply attaches an empty click handler to all label elements. For some reason, this magically fixes the issue on mobile safari.

share|improve this answer

there is a very clear article detailing JavaScript and jQuery work-arounds

Scary that this issue is so old (original post august 2010) and it is still not fixed.

share|improve this answer

i know it's not really nice markup: I just hardcoded an empty onclick like this onclick="" on each label. That worked on a wrapping label:

<label for="myID" onclick="">
 <input type="checkbox" id="myID" name="myNAME">
 Check to check
</label>
share|improve this answer
On wrapping labels it works anyway, the handler is not necessary. – Sorin Comanescu Aug 28 '12 at 14:08
On iPhone Safari, this didn't work right away. I had to set onclick=";" – J Bryan Price Sep 16 '12 at 22:42

If there is already an onclick attribute, one should not override it and in my test, it worked (the onclick attribute) and clicked the checkbox too. so my solution is:

<script type="text/javascript">
    var labels = document.getElementsByTagName("LABEL");
    var labels_l = labels.length;
    for(var l = 0; l < labels_l; l++){
        if(labels[l].hasAttribute("for") && (!labels[l].hasAttribute("onclick"))){
            labels[l].onclick = function () {};
        }
    }
</script>
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.