Skip to content

Instantly share code, notes, and snippets.

Created August 23, 2010 08:38
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save anonymous/545079 to your computer and use it in GitHub Desktop.
Save anonymous/545079 to your computer and use it in GitHub Desktop.
if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/iPad/i)) {
$(document).ready(function () {
$('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