I wanted to show a vertical drop-down menu on click on a div. Suppose i have a image element in a div element
<div id="menu"><img src="image.png">Menu</div>
And somewhere else within the html dom i have the list UL element
<div id="somediv">
<ul id="menulist">
<li>Item one
<ul>
<li>Subitem one</li>
<li>Subitem two</li>
</ul>
</li>
<li>Item two</li> </ul> </div>
I’m searching for a jquery plugin which can show drop-down menu when i say $(‘#menu’).click -> show elements of menulist under the image as a menu
Any help would be appriciated
It can as simple as this.