I have a problem, i have X in my code, now I want to foreach this object/array its out put. - look my code.
$(\"#d
How about
$("#denied_seekrs").click(function() { var checkedInputs = $("input:checked"); var test = ""; $.each(checkedInputs, function(i, val) { test += val.value+","; }); test = test.substring(0,(test.length-1)); alert(test); });