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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:23:52+00:00 2026-05-23T23:23:52+00:00

I have the following jQuery which basically leaves the div at it’s normal CSS

  • 0

I have the following jQuery which basically leaves the div at it’s normal CSS positioning (relative) until a certain offset (in this case 60px) is reached. At that point the CSS gets changed to position: fixed.

<script>
$(function () { 
  var $el = $('.sticky'), 
      originalTop = $el.offset(60).top;  // store original top position

  $(window).scroll(function(e){ 
    if ($(this).scrollTop() > originalTop ){ 
      $el.css({'position': 'fixed', 'top': '10px'}); 
    } else { 
      $el.css({'position': 'absolute', 'top': originalTop}); 
    } 
  }); 
});
</script>

What’s blowing my mind is that the above code was working in 1.3.2 and after pulling my hair out trying to plug this code into a new project, I’ve found that downgrading from 1.6.2 to jQuery v1.3.2 causes it to work as expected.

Can someone tell me how to update my jQuery code to be compatible with jQuery 1.6.2?

  • 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-23T23:23:53+00:00Added an answer on May 23, 2026 at 11:23 pm

    Change this:

    originalTop = $el.offset(60).top;
    

    To this:

    originalTop = $el.offset().top;
    

    offset(val) now sets the offsetDoc (as of version 1.4).   And, 60 is not a proper coordinate value.

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

Sidebar

Related Questions

I have the following piece of jquery. Which basically is a content slider, that
I have the following jQuery which I need adapting: $(document).ready(function(){ $(.rss-popup a).hover(function() { $(this).next(em).stop(true,
I have the following jQuery which I want to output a list of images.
I have the following JQuery code which does similar functionality like Stackoverflow where the
I have the following jQuery code which runs when I'm clicking an option in
Assuming I have the following two JQuery functions - The first, which works: $(#myLink_931).click(function
I have the following ListView in which I am using the JQuery UI sortable
I have the following JavaScript code which I like to convert to jQuery but
i have the following jquery code. basically i will have several overlapped divs and
I have the following code on my website, which basically checks to see if

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.