Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make a horizontal marquee for a website for a very "twitter-famous" client. He s asked for a scrolling section that spans the whole page width, and displays his last few tweets in a continuous cycle. I was going to try to use the marquee tag, but that waits until the text is all the way gone before cycling. I need it to cycle all the time, sort of like a carousel, and each one of the horses is a tweet. :p Would anyone be able to help me code a small javascript or jQuery script that can achieve this and maybe even have settings like speed, ect?

share|improve this question

closed as not a real question by tvanfosson, casperOne Apr 9 '12 at 17:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You can look at the infinite scroll jquery plugin

Basically you can think about it as paginated content on the server side and then if you reached the end of the page you load and append the the next page via Javascript.

Jumping back to the top if you reached the end of the content should be no problem I guess?

if you dont want to load the content dynamically maybe you are done with this one http://remysharp.com/demo/marquee.html

Hope this helps!

share|improve this answer

Try this which seems to already have everything you're looking for and a little more.
Demo can be found here.

share|improve this answer
That's like, EXACTLY what I need! Thanks!! – JamesCharless Apr 7 '12 at 16:18
Can you help me modify the script to fit my needs and different divs..? thecomedyjokes.tumblr.com – JamesCharless Apr 7 '12 at 16:22
@JamesCharless, I won't implement it for you, no, but I can answer any questions you might have trying to do it yourself. – Neil Apr 7 '12 at 16:24

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