Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <body>
  2. <input type="checkbox" checked='true' id='1'/>
  3. <input type="checkbox" checked='true' id='2'/>
  4. </body>
  5.  
  6. $('input:checkbox').live('change', function () {
  7. $('input:checkbox').prop('checked', $(this).is(":checked"));
  8. if ($('input:checkbox').is(":checked")) {
  9. $('body').addClass('checked');
  10. } else {
  11. $('body').removeClass('checked');
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement