Given a list of links, i.e.
<ul>
<li><a href="#">item 1</a></li>
<li><a href="#">item 2</a></li>
<li><a href="#">item 3</a></li>
<li><a href="#">item 4</a></li>
</ul>
set to be displayed inline, can anyone recommend a jQuery plugin that will allow for scrolling this list? Say I set the containing ul tag to have a width of 30px, the list will be cut off.
Ideally, the plugin should have "arrows" that allow scrolling left and/or right, depending upon the position the user is at in the list.
Thanks very much! :)