read checkbox values jquery code example
Example 1: get the value of a checkbox jquery
$("input[type='checkbox']").val();
$('#check_id').val();
Example 2: check checkbox based on value using jquery
$.each(arrayValues, function(i, val){
$("input[value='" + val + "']").prop('checked', true);
});