EDIT:

Thanks for the answers guys, it does look correct and it works on jsfiddle.net , but in my code the alert fires well, yet nothing happens to the checkboxes. :/

     $('#selectChb').click(function(){
         $(':checkbox').prop("checked", true);
         alert("1");
    });

     $('#deselectChb').click(function(){
         $(':checkbox').prop("checked", false);
         alert("2");
    });

...

<div id="chbDiv" class="ui-widget ui-widget-content ui-corner-all" >  <br></br>
  <table width="90%" border="0" align="center" cellpadding="5" cellspacing="0">
    <tr>
    <td colspan="2">Following:</td>
    <td>&nbsp;</td>
  </tr>
    <tr>
    <td width="25" align="left"><input type="checkbox" id="check1" /><label for="check1">&nbsp;</label></td>
    <td width="45" align="center"><img src="face_01.jpg" width="32" height="32"></td>
    <td>Andrew Lloyd Webber</td>
  </tr>
      <tr>
    <td width="25" align="left"><input type="checkbox" id="check2" /><label for="check2">&nbsp;</label></td>
    <td width="25" align="center"><img src="face_02.jpg" width="32" height="32"></td>
    <td>Richard Branson</td>
  </tr>
      <tr>
    <td width="25" align="left"><input type="checkbox" id="check3" /><label for="check3">&nbsp;</label></td>
    <td width="25" align="center"><img src="face_03.jpg" width="32" height="32"></td>
    <td>Dmitry Medvedev</td>
  </tr>
</table>
  <br>
  <table width="90%" border="0" align="center" cellpadding="5" cellspacing="0">
    <tr>
      <td><a href="#" id="selectChb" class="ui-state-default ui-corner-all"><span class="ui-icon ui-icon-check"></span>Select All</a>&nbsp;
      <a href="#" id="deselectChb" class="ui-state-default ui-corner-all"><span class="ui-icon ui-icon-close"></span>Deselect All</a></td>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
    </table>
<br>

</div>
  <br>
  <div  class="ui-widget ui-widget-content ui-corner-all">
link|improve this question

78% accept rate
What browser are you testing in and what jQuery version? – Gary Green Jun 3 '11 at 21:10
FireFox, latest version of jQuery, 1.6.1 – Roger Jun 4 '11 at 6:53
feedback

3 Answers

Try iterating through each items found

$('#selectChb').click(function(){

  alert("c!");

    $('#chbDiv').find(':checkbox').each(function(){

           $(this).attr('checked', !checkbox.attr('checked'));

   });
});
link|improve this answer
You might want to reference that this is pre 1.6. Post 1.6 should should use prop(); instead. – Scott Jun 3 '11 at 19:57
feedback

This code will toggle the checkboxes.. uncheck is a class given to a an href.

$('.uncheck').bind('click', function(e) {

    $(':checkbox').prop('checked', ($(':checkbox').prop('checked')) ? false : true);

    e.preventDefault();

});
link|improve this answer
thanks for the answer, but kinda strangely it doesn't work. see edit above. – Roger Jun 3 '11 at 20:18
feedback

Try the following,

Live Demo

$('#selectChb').click(function(){ 
     $(':checkbox').prop("checked", true);
});
link|improve this answer
thanks for the answer, but kinda strangely it doesn't work. see edit above. – Roger Jun 3 '11 at 20:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.