Skip to content

Instantly share code, notes, and snippets.

@bjankord
Forked from anonymous/gist:545079
Created December 9, 2012 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjankord/4245356 to your computer and use it in GitHub Desktop.
Save bjankord/4245356 to your computer and use it in GitHub Desktop.
Fix label click issue on iPad
//http://v4.thewatchmakerproject.com/blog/how-to-fix-the-broken-ipad-form-label-click-issue/
$(document).ready(function () {
if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/iPad/i)) {
$('label[for]').click(function () {
var el = $(this).attr('for');
if ($('#' + el + '[type=radio], #' + el + '[type=checkbox]').attr('selected', !$('#' + el).attr('selected'))) {
return;
} else {
$('#' + el)[0].focus();
}
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment