1//jQuery 1.6+ use
2$('.checkbox').prop('checked', true);
3//jQuery 1.5.x and below use
4$('.checkbox').attr('checked', true);
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//For jQuery 1.6 and above
2$('#myCheckBoxID').prop('checked', true);
3//For jQuery Before 1.6
4$('#myCheckBoxID').attr('checked','checked');
1// Check #x
2$( "#x" ).prop( "checked", true );
3
4// Uncheck #x
5$( "#x" ).prop( "checked", false );