Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $('#check-all-parent').click(function(event) {
  2. if(this.checked) { // check select status
  3. $('#check-all-child').each(function() { //loop through each checkbox
  4. this.checked = true; //select all checkboxes with class "checkbox1"
  5. });
  6. }else{
  7. $('#check-all-child').each(function() { //loop through each checkbox
  8. this.checked = false; //deselect all checkboxes with class "checkbox1"
  9. });
  10. }
  11. });
  12.  
  13. <input type="checkbox" id="check-all-parent">hello
  14. <br />
  15. <input type="checkbox" id="check-all-child">hello2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement