The following example code works in FireFox but IE is causing problems.
This code essentially renders a list of dynamic checkboxes according to a JSON array.
Whe
I find the .map function to be useful for this scenario. No need to strip off a trailing ',' with this usage.
$('#ProfSelector input:checkbox:checked').map(function() { return this.id; // or jquery object // return $(this).val(); }).get().join(',');