Hi all,
I have a UL list like:
<ul>
<li>menu1</li>
<li>menu2</li>
<li>menu3</li>
<li>menu4</li>
<li>menu5</li>
</ul>
I want to use this list as a animated JQuery menu. Setup in such a way that if a user clicks menu3 it becomes the first item in the list as menu1 and menu2 get appended to the end.
So after clicking on menu3 the ul would look like this:
<ul>
<li>menu3</li>
<li>menu4</li>
<li>menu5</li>
<li>menu1</li>
<li>menu2</li>
</ul>
Any guidance or suggestions would be greatly appreciated.