I am not really that familiar with jquery or javascript and I need a quick solution to my problem that is why im posting it here. Below is a sample html snippet:
<ul>
<li><input type="checkbox" />Administration
<ul>
<li><input type="checkbox" />President
<ul>
<li><input type="checkbox" />Manager 1
<ul>
<li><input type="checkbox" />Assistant Manager 1</li>
<li><input type="checkbox" />Assistant Manager 2</li>
<li><input type="checkbox" />Assistant Manager 3</li>
</ul>
</li>
<li><input type="checkbox" />Manager 2</li>
<li><input type="checkbox" />Manager 3</li>
</ul>
</li>
<li><input type="checkbox" />Vice President
<ul>
<li><input type="checkbox" />Manager 4</li>
<li><input type="checkbox" />Manager 5</li>
<li><input type="checkbox" />Manager 6</li>
</ul>
</li>
</ul>
</li>
</ul>
What I would like to do is to check everything when Administration is checked. If I uncheck President, then, his parent/s should be unchecked also together with his children leaving only the Vice President and his children checked. Similarly, if I check Manager 1 then his children should be checked also. But if I uncheck Assistant Manager 1 then Manager 1 should also be unchecked leaving only Asst. Manager 2 and 3 checked.
Take note that this list is dynamic. Meaning a child can have more children and so on.
Thanks in advance!
See this: DEMO
Courtesy: Uncheck parent checkbox if one child is unchecked