selected checkbox jquery code example
Example 1: get value of selected checkbox jquery
$('#checkbox_id:checked').val();
//if checkbox is selected than gets its value
Example 2: how to change checkbox state in jquery
$('[name="SelectedGroup"]').prop('checked', true);