Looking for a way to expand the sub-menu when the SETTINGS menu is clicked using typescript. Here is the list structure:
<li>
<a href="#"> <i class="fa fa-cogs fa-fw"></i> <span>SETTINGS</span> </a>
<ul class="sub-menu">
<li><a>PFA Setup</a></li>
<li><a>Fund Setup</a></li>
<li><a>Fee Setup</a></li>
<li><a>Payment Setup</a></li>
</ul>
</li>
If you have a solution using typescript, please share. I am unsure how to achieve this functionality with typescript.
Thank you.