1//jQuery 1.6+ use
2$('.checkbox').prop('checked', true);
3//jQuery 1.5.x and below use
4$('.checkbox').attr('checked', true);
1//jQuery 1.6+ use
2$('.checkbox').prop('checked', true); //false for uncheck
3//jQuery 1.5.x and below use
4$('.checkbox').attr('checked', true); //false for uncheck
1$('.myCheckbox').prop('checked', true);
2$('.myCheckbox').prop('checked', false);
1//jQuery 1.6+ use:
2$('.checkboxClass').prop('checked', true);
3//jQuery 1.5.x and below use:
4$('.checkboxClass').attr('checked', true);
1<script>
2 //jQuery 1.6+ use
3 $('#checkbox').prop('checked', true);
4
5 //jQuery 1.5.x and below use
6 $('#checkbox').attr('checked', true);
7</script>