Guest User

Untitled

a guest
Jan 17th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <input type="checkbox" id="chk1" name="chk1" value="100">Voicemail<br />
  2. <input type="checkbox" id="chk2" name="chk2" value="50">VM Support
  3.  
  4. $('#chk1, #chk2').on('click', function(){
  5. var checked = $(this).is(':checked');
  6. $('#chk1, #chk2').attr('checked', checked);
  7. });
  8.  
  9. <input type="checkbox" id="chk1" name="chk1" value="100">
  10. <label for="chk1">Voicemail and VM Support</label>
  11.  
  12. $('#chk1, #chk2').click(function(){
  13. checked = this.checked;
  14. $('#chk1, #chk2').each(function(){
  15. $(this).attr('checked', checked);
  16. });
  17. });
  18.  
  19. $('#chk1 , #chk2').on('click', function(){
  20.  
  21. $('#chk1 , #chk2').attr('checked', $(this).is(':checked'))
  22. });
Add Comment
Please, Sign In to add comment