Have you give the cycle plugin a look?  http://malsup.com/jquery/cycle/

I know they have an example for scrolling single items back and forth,
but I'm not sure how that would work with a portion of many like you
have. http://malsup.com/jquery/cycle/scrollhv.html




On Nov 10, 2:24 pm, PaulC <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I've got this working but its "hard coded".
>
> the menu on right hand side of this site:http://sugarsnap.previewurl.net
> needs to scroll through each item as the user clicks the arrows.
>
> This is working but only because I've put fixed heights to scroll -
> shich is buggy cross browser.
>
> the code:
>
> $('a.down').click(function(event) {
>       $('#folioMenu').scrollTo('+=90px', 800);
>       return false;
>
> });
>
> I want to use next and prev but it didnt work:
>
> $('#folioMenu').scrollTo($(".menuItem").next(), 800);
>
> I've tried several variations but no luck.
>
> any thoughts as to how this could be achieved?

Reply via email to