I\'m really bad at Javascript and I\'m struggling to get my head round it.
What I\'m trying to do is get something to select all checkboxes. However everything I have fo
Using JQuery, you can do this very easilly!
$(".ClassName").attr("checked", "true");
or a single ID
$("#ID").attr("checked", "true");
See: Check All Checkboxes with JQuery.