Is there a way to toggle the visibility of selected items in the mobile menu?
For instance, when I click on the menu toggle, I would like all the items in the Div class sidebar to be displayed but any content within its child div with class="sticky" should remain hidden.
This is how my menu HTML looks for the toggle link icon:
<a id="pull" class="toggle" style="cursor:pointer">Menu</a>
When the menu is clicked, I want to display all these elements except the ones inside the class="sticky"
<div class="sidebar">
<ul class="leftnav">
<li>» <a href="#">January</a></li>
<li>» <a href="#">February</a></li>
<li>» <a href="#">March</a></li>
<li>» <a href="#">April</a></li>
<li>» <a href="#">May</a></li>
<li>» <a href="#">June</a></li>
<li>» <a href="#">July</a></li>
<li>» <a href="#">August</a></li>
<li>» <a href="#">September</a></li>
<li>» <a href="#">October</a></li>
<li>» <a href="#">November</a></li>
<li>» <a href="#">December</a></li>
</ul>
<div class="sticky">
I dont want to show this item in toggle menu.
</div>
</div>