Hiding form using check box | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Anudeep_Garnepudi

@kamalams6577372 

Try the below snippet.

$(document).on("change", "./checkbox-name", function(e) { if($(this).prop("checked")) { // Logic Checked } else { // Logic un checked } });

1 reply

Anudeep_Garnepudi
Community Advisor
Anudeep_GarnepudiCommunity AdvisorAccepted solution
Community Advisor
February 11, 2021

@kamalams6577372 

Try the below snippet.

$(document).on("change", "./checkbox-name", function(e) { if($(this).prop("checked")) { // Logic Checked } else { // Logic un checked } });
February 11, 2021
can you please share me some example