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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:44:51+00:00 2026-05-24T23:44:51+00:00

I have a sidebar that contains content larger than the screen. As the user

  • 0

I have a sidebar that contains content larger than the screen. As the user scrolls down I want that content to come into view until the last bit. Then I want it to be fixed so that as much content stays on screen as possible. I actually want it to work exactly like the “Similar Questions” sidebar when you are posting a question in SO. In each of these example links scroll down. In the broken case notice how everything gets all jumpy.

Should work like this = http://jsfiddle.net/mrtsherman/G4Uqm/2/

But broken in this case = http://jsfiddle.net/mrtsherman/G4Uqm/1/

In the broken case it looks like the scroll event is being retriggered when you reach the end of the page. This then causes subsequent scroll events to trigger which then screw everything up. How can I properly handle this case? I just can’t figure it out.

$(document).ready(function() {

var dynamic = false;
var topOfSidebar = $("#sidebar").offset().top;
var leftOfSidebar = $("#sidebar").offset().left;
var botOfSidebar = topOfSidebar + $("#sidebar").height();
var botOfScreen = $(window).height() + $(window).scrollTop();

//if sidebar fits on screen then use fixed version of it
if (botOfSidebar < $(window).height()) {
    $("#sidebar").addClass("fixed");
    $("#sidebar").css("top", topOfSidebar);
    $("#sidebar").css("left", leftOfSidebar);
}
else {
    dynamic = true;
}
//toggle sidebar class when user scrolls
$(window).scroll(function() {
    console.log($("#sidebar").css("position"));
    botOfScreen = $(window).height() + $(window).scrollTop();
    //return;
    if (botOfSidebar < botOfScreen && dynamic) {
        $("#sidebar").addClass("fixed");
        //$("#sidebar").css("bottom", 0);
        //$("#sidebar").css("left", leftOfSidebar);
    }
    else if (dynamic) {
        $("#sidebar").removeClass("fixed");
    }
});
});
  • 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-24T23:44:51+00:00Added an answer on May 24, 2026 at 11:44 pm

    So I figured this one out on my own. The trick is to wrap the content in a div with a min-height attribute. If we switch the sidebar to fixed then the div holds the place of the sidebar. Therefore no more screen resizing.

    1. .wrap creates the div
    2. .parent gets the sidebar’s parent (the new div)
    3. add css properties where min-height is the height of the sidebar. Remove padding and margin

      $(“#sidebar”)
      .wrap(”)
      .parent()
      .css(“min-height”, this.height())
      .css(“padding”, “0px”)
      .css(“margin”, “0px”);

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

Sidebar

Related Questions

I have a sidebar that I want to behave like it's frozen on the
I have a sidebar navigation that lists blog entry titles down the side of
I have a wrapper element that contains two floated elements the contentArea and sidebar.
I'm working on a blog application, and I want to have a sidebar that
Okay, on one of my sites I have a news sidebar that displays events
I have in a sidebar: <div id=yyy> [shortcode]</div> It outputs a title that when
I will create a webpage that has a sidebar, and the sidebar will have
I would like to have the page on user/sidebar on the right in the
I have a sidebar(iframe) that has its own instance on each tab you open.
I have a small JQuery Tabs widget in a sidebar that fades in when

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.