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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:44:07+00:00 2026-05-27T14:44:07+00:00

I have a web page with a height more than 1000 pixels. There is

  • 0

I have a web page with a height more than 1000 pixels. There is an important text which I need to display all the time to a visitor. I placed a 20 pixel high DIV with a fixed property at the top of the page but the content of that DIV appears in the browser available in the middle. I want to hide the top div, but as I scrolled up from the middle div I want to show the top div.

  • 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-27T14:44:07+00:00Added an answer on May 27, 2026 at 2:44 pm

    Are you looking for something like this?

    • http://jsfiddle.net/3vEaF/

    Given this HTML:

    <p>a bunch of text, and duplicate this several times.  I used lorem ipsum</p>
    <p><span id="interesting">Here is the interesting text.</span></p>
    <p>a bunch more text, and duplicate this several times.  I used lorem ipsum</p>
    

    You can use this JavaScript to display a div when span#interesting is visible, and hide it when it isn’t visible:

    // Add a div to contain a copy of the interesting text
    var interestingOffscreen = $('<div/>')
        .attr('id', 'interesting')
        .text($("span#interesting").text());
    
    $('body').prepend(interestingOffscreen);
    
    // Center the display of that copy
    interestingOffscreen.css(
        'margin-left',
        -(interestingOffscreen.outerWidth() / 2)
    );
    
    // Detect when it is offscreen/onscreen and react    
    function isScrolledIntoView(elem)
    {
        var docViewTop = $(window).scrollTop();
        var docViewBottom = docViewTop + $(window).height();
    
        var elemTop = $(elem).offset().top;
        var elemBottom = elemTop + $(elem).height();
    
        return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom));
    }
    
    var isNotVisibleHandler; // forward declaration
    
    function isVisibleHandler()
    {
        if(isScrolledIntoView($("span#interesting")))
        {
            $(window).unbind('scroll');
            interestingOffscreen.fadeOut(
                function() {
                    $(window).scroll(isNotVisibleHandler);
                    $(window).scroll(); // force detection
                }
            );
        }
    }
    
    isNotVisibleHandler = function()
    {
        if(!isScrolledIntoView($("span#interesting")))
        {
            $(window).unbind('scroll');
            interestingOffscreen.fadeIn(
                function() {
                    $(window).scroll(isVisibleHandler);
                    $(window).scroll(); // force detection
                }
            );
        }
    };
    
    $(window).scroll(isVisibleHandler);
    

    Not all of this is strictly necessary, but it looks cool.

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

Sidebar

Related Questions

I have web page in PHP which displays all records in a table. I
I have a web page with nothing more than pure HTML, CSS and full
I have web page which is passing a querystring parameter to page 2: <a
I have a web page which contains a select box. When I open a
I have a web page in which people go to register for my site.
I have web page that looks like this: Image on the left - text
There is one thing, what I should make for client web page. All done,
I have a web page with HTML as below: <head> <script type="text/javascript" src="jquery-1.5.1.js"></script> <style
I have a Web page in which I embed a Google docs viewer in
I have a web page that includes a bunch of images. Sometimes the image

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.