I am interested in creating a series of interactive nested lists using Miller Columns design. The idea is that when you click on a parent item, it expands to reveal the next level of the list.
While I have come across solutions that involve parsing data as JSON, I am looking for a way to achieve this effect using plain HTML without needing to convert the data format.
The structure of my content is based on a standard nested list format:
<ul>
<li><a href="">Column 1</a></li>
<li><a href="">Column 1</a></li>
<li><a href="">Column 1</a></li>
<li><a href="">Column 1</a>
<ul>
<li><a href="">Column 2</a>
<ul>
<li><a href="">Column 3</a>
<ul>
<li><a href="">Column 4</a></li>
<li><a href="">Column 4</a></li>
<li><a href="">Column 4</a></li>
<li><a href="">Column 4</a>
</li>
</ul>
</li>
<li><a href="">Column 3</a></li>
<li><a href="">Column 3</a></li>
<li><a href="">Column 3</a>
</li>
</ul>
</li>
<li><a href="">Column 2</a></li>
<li><a href="">Column 2</a></li>
<li><a href="">Column 2</a></li>
</ul>
</li>
</ul>
I would appreciate any guidance on how to accomplish this task without relying on JSON parsing methods. Thank you.