vote up 1 vote down star

Now, I'm trying to create a vertical scroll. http://www.chohoh.com/pcs/test.scroll.html

I have quite a few things nested which needs to remain like that but I think I'm unclear on how to tell the jquery file that it needs to scroll between two li classes "white-tikt" and "tan-tikt".

I'm completely baffled why this isn't working. Even if someone can just get me thinking in a different way, I keep trying the same things over and over.

Looking for any resolution, help, tip or advice. thanks!

flag

50% accept rate

2 Answers

vote up 0 vote down check

Try the scroll to plugin http://plugins.jquery.com/project/ScrollTo

You could also try something using the animate functionality:

$('#current-div').animate({width: '0px'});
$('#next-div').animate({width: '300px'});
link|flag
I'm actually going to try that now, shifting gears but I'm not quite understanding what I have to do to get it to vertical scroll with this angle? can you help me out? – miss chohoh Sep 18 at 22:45
If you look at the demo: demos.flesler.com/jquery/scrollTo click on the "jQuery object" on the top demo, it will give you an example of what you need to do ;) – SeanJA Sep 19 at 0:20
thanks! I feel like I'm so close!! I'll let you know how it goes.. – miss chohoh Sep 19 at 0:23
weird. that page makes no sense to me. I'd be just as best off copying and pasting random stuff on the page until something works. it doens't explain anything!!! – miss chohoh Sep 19 at 0:30
that demo you sent is the worst example. i think it confused me more. there is no indication anywhere explaining how to vertical scroll a div box. :( – miss chohoh Sep 19 at 1:03
show 3 more comments
vote up 1 vote down

Div box needs to be overflow:hidden, then you can use localScroll to scroll between elements.

Try to make your own simple example with some code like:

$.localScroll();

Does this help any or am I out of my league?

link|flag
That could have been helpful too. – SeanJA Sep 19 at 15:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.