How we can disable enable controls of specific div on checkbox click/change,
I have three checkboxes and three divs, what I want to do is, on checkbox one checked enable div one controls (textboxes, select). so far I'm able to get the checkbox enable disable event like the code below
- $('#chkbxOne').change(function () {
- var c = this.checked ? 'T' : 'F';
- if (c == "T") {
- alert("Enable");
- }
- if (c == "F") {
- alert("Disable");
- }
- });
same for other two divs

Amit MohantyPosted Feb 3, 2020, 6:12 AM
Rameez JavedPosted Feb 3, 2020, 6:22 AM
Rajanikant HawaldarPosted Feb 3, 2020, 5:42 AM
Jignesh KumarPosted Feb 3, 2020, 5:08 AM