tags:

views:

13

answers:

1

I have a vertical side navigation bar and i would like its width to be horizontally adjustable. May someone please direct me to a tutorial or plugin that would help achieve this?

Thanks

A: 

I think you are going to want to use jQuery with its UI plugin. It can be as simple as:

$("#resizable").resizable();

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

Wolfy87