I\'m trying to create a comma separated list from what is checked on the form.
var $StateIDs = $(\':checked\'); var StateIDs = \'\'; for (i=0, j = $StateIDs.leng
var ids = ''; $(':checked').each(function(){ ids += $(this).val() + ','; });
Writing blind, so I have not tested.