Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery select all checkboxes

I have a series of checkboxes that are loaded 100 at a time via ajax.

I need this jquery to allow me to have a button when pushed check all on screen. If more are loaded, and the button is pressed, to perhaps toggle all off, then pressed again toggle all back on.

This is what i have, obviously its not working for me.

$(function () {  $('#selectall').click(function () {   $('#friendslist').find(':checkbox').attr('checked', this.checked);  }); }); 

The button is #selectall, the check boxes are class .tf, and they all reside in a parent div called #check, inside a div called #friend, inside a div called #friendslist

Example:

<div id='friendslist'>     <div id='friend'>         <div id='check'>             <input type='checkbox' class='tf' name='hurr' value='durr1'>         </div>     </div>     <div id='friend'>         <div id='check'>             <input type='checkbox' class='tf' name='hurr' value='durr2'>         </div>     </div>     <div id='friend'>         <div id='check'>             <input type='checkbox' class='tf' name='hurr' value='durr3'>         </div>     </div> </div>  <input type='button' id='selectall' value="Select All"> 
like image 576
mrpatg Avatar asked Dec 10 '09 11:12

mrpatg


People also ask

How do I select all checkbox inputs?

How can I do this? In Firefox (and maybe others?) : Hit CTRL+SHIFT+K to open the console, then paste : $("input:checkbox"). attr('checked', true) and hit Enter . All check-boxes on current page should now be checked.

How do I select all checkboxes with one checkbox?

In order to select all the checkboxes of a page, we need to create a selectAll () function through which we can select all the checkboxes together. In this section, not only we will learn to select all checkboxes, but we will also create another function that will deselect all the checked checkboxes.


1 Answers

I know I'm revisiting an old thread, but this page shows up as one of the top results in Google when this question is asked. I am revisiting this because in jQuery 1.6 and above, prop() should be used for "checked" status instead of attr() with true or false being passed. More info here.

For example, Henrick's code should now be:

$(function () {     $('#selectall').toggle(         function() {             $('#friendslist .tf').prop('checked', true);         },         function() {             $('#friendslist .tf').prop('checked', false);         }     ); }); 
like image 166
Teg Avatar answered Sep 22 '22 00:09

Teg