Chequear todos los checkbox con jquery


/ Published in: jQuery
Save to your folder(s)

Chequea todos los checkbox con un mismo nombre desde uno aparte que tiene como ID "checkeverythink_btn"


Copy this code and paste it in your HTML
  1. function checkTodos(){
  2.  
  3. if($("#checkeverythink_btn").is(":checked")){
  4. $(":checkbox").each( function() {
  5. $(this).attr('checked', true);
  6. });
  7. }else{
  8. $(":checkbox").each( function() {
  9. $(this).attr('checked', false);
  10. });
  11. }
  12.  
  13. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.