I want to loop through the checkboxgroup \'locationthemes\' and build a string with all selected values. So when checkbox 2 and 4 are selected the result would be: \"3,8\">
var SlectedList = new Array(); $("input.yorcheckboxclass:checked").each(function() { SlectedList.push($(this).val()); });