How to check checkbox is checked or not using jquery
$(document).ready(function(){
$(".class).click(function() {
if ($(this).is(':checked')) {
//return true if check box checked
$(".class").prop("checked", true)//to check box
}
});
});



