Find and set checked true and call click event dynamically.
- var liIndex = 6;
- $(".containerul li:nth-child(" + liIndex + ")").find(".boxcheckbox").prop('checked', true);
- $(".containerul li:nth-child(" + liIndex + ")").find(".boxcheckbox").click();
-
- /here boxcheckbox is the class name of my check box.