Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

137
Views
selecting multiple checkboxes in separate divs with JQuery

I have several checkboxes spread across multiple divs.In all separate div I have a 'select all' checkbox. When that checkbox is selected, I am trying to get all the other ones to be selected related to that pertucular div, and when you deselect the 'select all' one, it deselects the others.

<div class="actions" id="actions" title="Actions">
   <div>
       <div><input type="checkbox" name="action" id="" class="" value="0" /> Select All</div><br />
       <div><input type="checkbox" name="action" id="" class="" value="1" /> <?php echo $lang["actions"][1]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="2" /> <?php echo $lang["actions"][2]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="3" /> <?php echo $lang["actions"][3]; ?></div><br />

   </div>
   <div>
       <div><input type="checkbox" name="action" id="" class="" value="26" />Select All</div><br />
       <div><input type="checkbox" name="action" id="" class="" value="27" /> <?php echo $lang["actions"][27]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="28" /> <?php echo $lang["actions"][28]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="29" /> <?php echo $lang["actions"][29]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="30" /> <?php echo $lang["actions"][30]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="31" /> <?php echo $lang["actions"][31]; ?></div>
   </div>
</div>
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Here is an example

Next time show us at least a minimum of code so that we can help you understand

$('.selectAll').on('click',function(){
  let isSelected = $(this).is(':checked');
  $(this).parents('.myDiv').find('input[type="checkbox"]').each(function(){
    if( isSelected )
      $(this).prop('checked',true);
    else
      $(this).prop('checked',false);
  })
})


$('input:not(".selectAll")').on('click',function(){
  let selectAllChecked =  $(this).parents('.myDiv').find('.selectAll')[0].checked;
  let numberInput = $(this).parents('.myDiv').find('input').not('.selectAll').length;
  let numberInputChecked = $(this).parents('.myDiv').find('input:checked').not('.selectAll').length;
  
  if( selectAllChecked )
    $(this).parents('.myDiv').find('.selectAll')[0].checked = false;
      
  if( numberInput == numberInputChecked)
    $(this).parents('.myDiv').find('.selectAll')[0].checked = true;
  
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="actions" id="actions" title="Actions">
   <div class="myDiv">
       <div><input type="checkbox" name="action" id="" class="selectAll" value="0" /> Select All</div><br />
       <div><input type="checkbox" name="action" id="" class="" value="1" /> <?php echo $lang["actions"][1]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="2" /> <?php echo $lang["actions"][2]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="3" /> <?php echo $lang["actions"][3]; ?></div><br />

   </div>
   <div class="myDiv">
       <div><input type="checkbox" name="action" id="" class="selectAll" value="26" />Select All</div><br />
       <div><input type="checkbox" name="action" id="" class="" value="27" /> <?php echo $lang["actions"][27]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="28" /> <?php echo $lang["actions"][28]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="29" /> <?php echo $lang["actions"][29]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="30" /> <?php echo $lang["actions"][30]; ?></div><br />
       <div><input type="checkbox" name="action" id="" class="" value="31" /> <?php echo $lang["actions"][31]; ?></div>
   </div>
</div>

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!