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

  • SEARCH
  • Home
  • 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 3284466
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:09:28+00:00 2026-05-17T20:09:28+00:00

Some sites have tables which appends rows when you scroll the browser so that

  • 0

Some sites have tables which appends rows when you scroll the browser so that the bottom of the table is visible.

Guess it’s something like this:

  1. jQuery detects that the end of the table is visible in the browser
  2. $.getJSON is used to fetch the next rows from the server
  3. the rows are appended.

Questions:

  1. How do I detect that the last row is visible in the browser?
  2. Is there a better way than $(‘#tableId tbody tr’).length to get the current number of rows?
  • 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-17T20:09:28+00:00Added an answer on May 17, 2026 at 8:09 pm

    (1) Detect whether the last row is visible:

    $(window).scroll(function(){
        var $window = $(this),
            $el = $('#tableId tbody tr:last'),
    
            viewPaneTop = $window.scrollTop(),
            viewPaneBottom = viewPaneTop + $window.height(),
    
            elementTop = $el.offset().top,
            elementBottom = elementTop + $el.height();
    
        if ((elementTop >= viewPaneTop) && (elementBottom <= viewPaneBottom)) {
            // add new rows here
        }
    });
    

    (2) That’s the correct way to determine the number of rows.

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

Sidebar

Related Questions

We have a suite of interlinked .Net 3.5 applications. Some are web sites, some
Argghh. I have a site that offers audio previews of songs hosted elsewhere. Some
I have some code on my PHP powered site that creates a random hash
I have some pages on my site that are plain HTML pages, but I
I have some code that creates a new site in SharePoint. Upon browsing to
I have to call some code in a SharePoint site that runs under the
We have two websites that share some business processes and UI elements. Lets focus
I have put together a small ASP.NET MVC 2 site that does some very
I have a local mercurial repository with some site-specific changes in it. What I
I have a server set up with IIS, and my site has some pages

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.