function getValues() { var list = null, res = ''; list = $(':checkbox:checked'); list.each( function(ind) { res += $(this).val(); if (ind < list.length - 1) res +=','; // например через запятую }); return res; }