if ($('#check_id').is(":checked"))
{
// it is checked
}
$(".checkbox").change(function() {
if(this.checked) {
//Do stuff
}
});
$("checkbox").is(":checked")
console.log($('input[name="locationthemes"]:checked').serialize());
//or
$('input[name="locationthemes"]:checked').each(function() {
console.log(this.value);
});