Jquery sidebar menu

I'm looking for a jQuery plugin sidebar menu with horizontal antialiasing / expanding and hopefully drag-and-drop. It would be nice if it accepted the following list for menu options:

<ul>
  <li><a href="#">option 1</a></li>
  <ul>
      <li><a href="#">sub-option A</a></li>
  </ul>
  <li><a href="#">option 2</a></li>
  <li><a href="#">option 3</a></li>
</ul>

      

Does anyone have any recommendations or suggestions?

I like the jQuerySideBar Plugin approach , but would prefer a little simpler and more flexible.

+2


a source to share


1 answer


It looks like you are talking about the Accordion .

http://docs.jquery.com/UI/Accordion

http://jqueryui.com/demos/accordion/

You should also check the jQuery UI Resizable function .




Here's a horizontal accordion :

http://www.portalzine.de/Horizontal_Accordion_Plugin_2/index.html

+1


a source







All Articles