I have a series of checkboxes that are loaded 100 at a time via ajax.
I need this jquery to allow me to have a button when pushed check all on screen. If more are lo
It works for me (IE, Safari, Firefox) by just changing your this.checked to 'checked'.
$(function() { $('#selectall').click(function() { $('#friendslist').find(':checkbox').attr('checked', 'checked'); }); });