Press "Enter" to skip to content

How to check checkbox is checked or not using jquery

0
$(document).ready(function(){
  $(".class).click(function() {
        if ($(this).is(':checked')) {
//return true if check box checked
          $(".class").prop("checked", true)//to check box
         }
  });
});
What is the difference between MyISAM and InnoDB?
Update value of field from another table field in sql