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?
<label for="someId">Tap here</label><input id="someId" ... />– mplungjan Sep 9 '11 at 13:17