How to check checkbox is checked or not using jquery

October 20, 2021 · 1 min read
$(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
Share on Facebook
Facebook
Tweet about this on Twitter
Twitter
Share on LinkedIn
Linkedin
Pin on Pinterest
Pinterest