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 have a big table with vertical scroll bar. I would like to scroll to a specific line in this table using jQuery/Javascript.

Should I look for plug-ins for this task, or there are built-in methods ?

Here is a little example to play with.

share|improve this question

6 Answers

up vote 137 down vote accepted

Dead simple. No plugins needed.

var container = $('div'),
    scrollTo = $('#row_8');

container.scrollTop(
    scrollTo.offset().top - container.offset().top + container.scrollTop()
);

// Or you can animate the scrolling:
container.animate({
    scrollTop: scrollTo.offset().top - container.offset().top + container.scrollTop()
});​

Documentation for scrollTop.

share|improve this answer
3  
+1 for the simplicity – baloo May 25 '10 at 18:37
Thanks ! Looks really very simple ! I'll try that ! – Misha Moroshko May 26 '10 at 7:05
When scrolling several times, the difference may be negative. Look here: jsfiddle.net/eMJpA. How would you fix this ? – Misha Moroshko May 26 '10 at 11:51
1  
@Misha, this should work: jsfiddle.net/DLKNp – James May 26 '10 at 13:14
3  
If the container has a scrollbar, you'll need to account for the scrollTop: scrollTo.offset().top - container.offset().top + container.scrollTop() – Aksival May 20 '11 at 0:34
show 4 more comments

I like this one: http://flesler.blogspot.com/2007/10/jqueryscrollto.html

See the demo: http://demos.flesler.com/jquery/scrollTo/

share|improve this answer
yes, this is a great plugin. look no further. – mkoryak May 25 '10 at 15:07
Nice, this is cool :) – medopal May 25 '10 at 15:13
9  
An entire plugin for such a simple task? – James May 25 '10 at 15:19
@J-P well it got easing and some other convenient options – baloo May 25 '10 at 15:21
2  
The OP didn't ask for all of that though. What the OP wants is actually incredibly simple. – James May 25 '10 at 15:27

I've always found the jQuery scrollTo plugin to be very useful for this. Play with the demos to see if it's for you.

share|improve this answer

best plugin I found was this: git://gist.github.com/3848811.git

Its not a plugin per say but it does the work of one, and it solved my problems. unfortunately it only works in FF. No ideea why chrome doesn't like it/doesn't wanna run it.

EDIT: Meanwhile I managed to do it myself. No need for any plugins. CHeck out my gist: https://gist.github.com/3857347

share|improve this answer
Your one-line gist, complete with animation, was exactly what I needed. Thanks! – Scott Smith Dec 26 '12 at 10:35
Cheers ! Glad it helped you ! :) – lorddarq Dec 30 '12 at 14:09

I'd say it is even simpler looking than the accepted answer to scroll to something:

$('html,body').animate({scrollTop: some_selected_element.offset().top});

Or, to go to the top of the page:

$('html,body').animate({scrollTop: 0});
share|improve this answer
3  
Most simple answer here. Thanks. – Zachary Schuessler Mar 7 at 16:43

Not sure why no one says the obvious, as there's a built in javascript scrollTo function http://www.w3schools.com/jsref/met_win_scrollto.asp

scrollTo( $('#element').position().top )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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