Guest User

Untitled

a guest
Jun 21st, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // Label tag toggles associated checkbox (hack for iPhone)
  2. $("label").click( function() {
  3. $("#" + $(this).attr('for')).each( function() {
  4. $(this).attr('checked', !$(this).attr('checked'));
  5. });
  6. return false;
  7. });
Add Comment
Please, Sign In to add comment