Hello,
on the jQueryUI web site, at the following address, there is a sample of styling a button with a down arrow that can open a menu (maybe it's better to look at the url to be sure to understand... :O).
let's suppose to have the following markup:
<div id="buttonMenu" style="display: none;">
<ul>
<li><a href="#1">Menu Item 1</a></li>
<li><a href="#2">Menu Item 2</a></li>
<li><a href="#3">Menu Item 3</a></li>
<li><a href="#4">Menu Item 4</a></li>
</ul>
</div>
Can somebody tell me how can I show the div as a menu when the user click on that arrow?
Thanks in advance for your help!