How to check checkbox is checked or not using jquery Published October 20, 2021 by Abhishek Jaiswal 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 FacebookTwitterLinkedinPinterest Published in blog, Jquery, PHP and Programming