0

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! :)

2
  • 1
    What are the logical steps that lead you to believe you needed jQuery to accomplish this? Commented Aug 29, 2011 at 20:13
  • @Incognito : doxdesk.com/img/updates/20091116-so-large.gif :-D Commented Aug 29, 2011 at 20:16

2 Answers 2

5

Plugin?

The greatest plugin of them all is called CSS:

ul {
    width: 30px;
    overflow: scroll;
}

Fiddle Demo

Sign up to request clarification or add additional context in comments.

Comments

0

Looks like you need a "Slider". Just about any will do, and they all typically work with LI. Here's a few. 25 Sliders and Tutorials

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.