here's my code.
jQuery('#delete_item').click(function(){
var arr = array();
jQuery('.man_id:checked').each(function (){
var value = jQuery(this).val();
arr += value;
});
alert(arr);
});
what I want is to store all the value in the array.. is it possible?