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 788033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T21:17:52+00:00 2026-05-14T21:17:52+00:00

Using Javascript, Jquery preferably, I want to be able to trigger the visiblity of

  • 0

Using Javascript, Jquery preferably, I want to be able to trigger the visiblity of the div when a user is at a certain page height. NYtimes has an example of this when you scroll to the bottom of a story, a slider pops out with another news story, and goes away if you scroll up.

  • 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-14T21:17:52+00:00Added an answer on May 14, 2026 at 9:17 pm

    I think the methods you want are:

    $(document).scroll()    // event triggered whenever the page is scrolled
    $(document).height()    // gets the height of the entire page
    $(window).height()      // gets the height of the current window
    $(document).scrollTop() // gets the top position currently visible
    

    Using these, you could write a method to show a div when the window is 100 pixels from the bottom:

    $(document).scroll(function() {
        var scrollBottom = $(document).scrollTop() + $(window).height();
        var height = $(document).height();
        if (scrollBottom > height - 100)
            $("div").show();
        else
            $("div").hide();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to trigger one event on page load complete using javascript/jquery. Is there
I am using JavaScript and jQuery. My main file has My.js and Ajax. My.js
I want to handle F1-F12 keys using JavaScript and jQuery. I am not sure
How do you detect which form input has focus using JavaScript or jQuery? From
I'm using JavaScript/Jquery to make a page auto-update with a value from a database,
I've rewritten my family web site using JavaScript (JQuery) making Ajax calls to PHP
I'm looking for a good 10 minute introduction to Unobtrusive Javascript using JQuery. I'm
New to javascript/jquery and having a hard time with using this or $(this) to
I am using JavaScript, jQuery and PHP. How do I limit the JavaScript function
I am using jQuery and JavaScript, I need to call the jQuery function inside

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.