Within Navabar is it possible to have a dropdown menu within another dropdown menu using Bootstrap 5.
I tried amending my code to add dropdownBrowseMenuId to dropdownHelpMenuId but it didnt like it. The help doesnt mention dropdowns within dropdowns so if it isnt supported I will not try to use it, but seems quite it would be quite a common requirement
<li class="nav-item dropdown">
<a href="#" id="dropdownHelpMenuId" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="nav-link dropdown-toggle">
Help
</a>
<div class="dropdown-menu" aria-labelledby="dropdownHelpMenuId">
<li class="nav-item dropdown">
<a href="#" id="dropdownBrowseMenuId" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="nav-link dropdown-toggle">
Browse
</a>
<div class="dropdown-menu" aria-labelledby="dropdownBrowseMenuId">
<a href="/albums.start?cid=0$albums&title=Albums" class="dropdown-item">
Albums
</a>
<a href="/albumartists.start?cid=0$=Album_Artists&title=Album Artists" class="dropdown-item">
Album Artists
</a>
<a href="/topcontainer.start?cid=0$=Overall_work&title=Works" class="dropdown-item">
Works
</a>
<a href="/tracks.start?cid=0$items&title=Tracks" class="dropdown-item">
Tracks
</a>
<a href="/folders.start?cid=0$folders&title=Folders" class="dropdown-item">
Folders
</a>
</div>
</li>
<a href="http://www.jthink.net/songkong/help/help.html" class="dropdown-item">
Help
</a>
<a href="http://www.jthink.net/songkong/help.pdf" class="dropdown-item">
Pdf
</a>
</div>
</li>