Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6732181
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:37:07+00:00 2026-05-26T10:37:07+00:00

Using either pure Javascript or jQuery, how do I scroll the page so that

  • 0

Using either pure Javascript or jQuery, how do I scroll the page so that the nth row in a table is centered on the page?

Some examples I’ve seen that have this sort of feature usually require that the element I scroll to uses an id as the selector, but since the table has a dynamic amount of rows and may be paged, I’d rather not go this route of having to give each <td> tag an id.

Is the easiest way to just calculate the position of the td relative to the top of the document and scroll the window using setInterval until the middle of the window is >= to the position of the nth <td> tag?

I suppose some pseudo-code of the way I imagine it working would be:

function scrollToNthTD(i) {
  var position = CalculatePositionOfTR(i);
  var timer = setTimeout(function () {
    ScrollDownALittle();
    if( CenterOfVerticalWindowPosition > position)
      clearInterval(timer);
  }, 100);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T10:37:07+00:00Added an answer on May 26, 2026 at 10:37 am

    Latest update (no-jquery for for modern browsers)

    var rows = document.querySelectorAll('#tableid tr');
    
    // line is zero-based
    // line is the row number that you want to see into view after scroll    
    rows[line].scrollIntoView({
        behavior: 'smooth',
        block: 'center'
    });
    

    Demo at http://jsfiddle.net/r753v2ky/


    Since you can use jQuery here it is..

    var w = $(window);
    var row = $('#tableid').find('tr').eq( line );
    
    if (row.length){
        w.scrollTop( row.offset().top - (w.height()/2) );
    }
    

    Demo at http://jsfiddle.net/SZKJh/


    If you want it to animate instead of just going there use

    var w = $(window);
    var row = $('#tableid').find('tr').eq( line );
    
    if (row.length){
        $('html,body').animate({scrollTop: row.offset().top - (w.height()/2)}, 1000 );
    }
    

    Demo at http://jsfiddle.net/SZKJh/1/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to download some data using pure javascript/html from cross-domain, dropbox to be
I want to make a function either using pure Javascript or also benefiting from
See title. Using either javascript or pure HTML.
I'd like to change the way some types are displayed using either 'dt' or
What's the fastest way using either DOS scripting or PowerShell to run this simple
I don't see the point of using either http://960.gs or http://blueprintcss.org if they enforce
What advantages are there for using either XSLT or Linq to XML for HTML
What are the pros and cons of using either of the following approaches to
Usually Flash and Flex applications are embedded on in HTML using either a combination
In .Net you can read a string value into another data type using either

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.