faizan ahmad

Usually the things which were not a straight Google

  Home  |   Contact  |   Syndication    |   Login
  17 Posts | 0 Stories | 68 Comments | 0 Trackbacks

News

Archives

Post Categories

.NET

ASP.NET

Friday, August 17, 2012 #

function selectAll() {
  $("#DivContainingCheckboxesID :checkbox").attr('checked'true);
}
function selectNone() {
  $("#DivContainingCheckboxesID :checkbox").attr('checked'false);
} 
//if you want to do something specific for each check box
$("#DivContainingCheckboxesID :checkbox").each(function () {
      //do it here
      if (this.checked)
          this.click();
});