I have a List Lookup that is filtered by several cascading drop-downs.
How do I default to having all the options returned checked? I have searched the previous solutions but can't quite get them to work. I have tried giving the list lookup a CSS name and a Javascript client ID. In this case it's "TaskList". 
This works when giving the user an option button to Select All.
NWF$('#'+TaskList).click(function(){
NWF$('input:checkbox').not(this).prop('checked', this.checked);
});
However, this info lives in a repeater row. Adding another repeater row breaks the Select All for that subsequent row.
I would like everything to just be auto-selected on load.