View Single Post
Old 11-08-2012, 08:24 AM   PM User | #2
devnull69
Senior Coder

 
Join Date: Dec 2010
Posts: 2,245
Thanks: 10
Thanked 531 Times in 525 Posts
devnull69 will become famous soon enough
Code:
$('#selectall').click(function() {
   $('input:checkbox').prop('checked', true);
});
devnull69 is offline   Reply With Quote