By default in mmenu, you have to click the arrow (to the right of the menu item) to show the submenu.
Is there a way to change it so that when you click anywhere on a menu item (doesn't have to be the arrow) it will expand as well?
My menu is roughly like this:
<ul>
<li><a href='Page1.aspx'>Item with no submenu</a></li>
<li><a>Click this to expand</a>
<ul>
<li><a href='sub1.aspx'>Submenu 1</a></li>
<li><a href='sub2.aspx'>Submenu 2</a></li>
</li>
</ul>