It’s simple – can be done in such a way:

	
if ($("#myCheckBoxID").is(':checked')) {
  ...
};

or by checking an attribute:

	
if ($('#myCheckBoxID').attr('checked')) {
  ...
};