Solved
Hiding form using check box
Hi all,
Can anyone help me how to hide and unhide a form depends on checkbox selection.
Hi all,
Can anyone help me how to hide and unhide a form depends on checkbox selection.
Try the below snippet.
$(document).on("change", "./checkbox-name", function(e) {
if($(this).prop("checked")) {
// Logic Checked
} else {
// Logic un checked
}
});Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.