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

The Archive Base Latest Questions

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

I have a nifty smooth animated scroll that goes up and down depending on

  • 0

I have a nifty smooth animated scroll that goes up and down depending on what you click on the navigation (thanks to CSS-Tricks!). Now this is all working great but I have a nav that sticks to the top of the browser window and gets in the way of the section headers when it scrolls down. I can’t for the life of me find anyone who may have had a similar issue with, what seems like, a very simple function.

Here’s the JS that I have pasted into my HTML:

<script type="text/javascript">
$(document).ready(function() {
  function filterPath(string) {
  return string
    .replace(/^\//,'')
    .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
    .replace(/\/$/,'');
  }
  var locationPath = filterPath(location.pathname);
  var scrollElem = scrollableElement('html', 'body');

   $('a[href*=#]').each(function() {
    var thisPath = filterPath(this.pathname) || locationPath;
    if (  locationPath == thisPath
    && (location.hostname == this.hostname || !this.hostname)
    && this.hash.replace(/#/,'') ) {
      var $target = $(this.hash), target = this.hash;
      if (target) {
        var targetOffset = $target.offset().top;
        $(this).click(function(event) {
          event.preventDefault();
          $(scrollElem).animate({scrollTop: targetOffset}, 800, function() {
            location.hash = target;
          });
        });
      }
    }
  });

  // use the first element that is "scrollable"
  function scrollableElement(els) {
    for (var i = 0, argLength = arguments.length; i <argLength; i++) {
      var el = arguments[i],
          $scrollElement = $(el);
      if ($scrollElement.scrollTop()> 0) {
         return el;
      } else {
        $scrollElement.scrollTop(1);
        var isScrollable = $scrollElement.scrollTop()> 0;
        $scrollElement.scrollTop(0);
        if (isScrollable) {
          return el;
        }
      }
    }
    return [];
  }

});</script>

So I am in the process of learning JS and JQuery so I appreciate everyones patience and look forward to hearing your comments.

Many thanks in advance.

Edit: here is my test site: test

  • 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-28T06:49:18+00:00Added an answer on May 28, 2026 at 6:49 am

    Get a copy of jquery.scrollTo.js
    from http://flesler.blogspot.com/2008/09/jqueryscrollto-14-released.html

    This is what controls the position of the scroll item

     $.scrollTo( 0, 500); 
    

    the 0 would take to top of the page, if you set higher figure
    it would take your lower down the page, in my example I have 5 sections I wanted to scroll to. Change as you need.

    I used this in the head section:

     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
    
    
     <script type="text/javascript" src="javascripts/jquery.scrollTo.js"></script>
     <script type="text/javascript">
     $(document).ready(function()
     {
     // scroll to top
     $('a.topOfPage').click(function(){
     $.scrollTo( 0, 500);
     return false;
     });
     // scroll to top
     $('a.twoOfPage').click(function(){
     $.scrollTo( 570, 500);
     return false;
     });
     // scroll to top
     $('a.threeOfPage').click(function(){
     $.scrollTo( 1175, 500);
     return false;
     });
     // scroll to top
     $('a.fourOfPage').click(function(){
     $.scrollTo( 1790, 500);
     return false;
     });
     // scroll to top
     $('a.fiveOfPage').click(function(){
     $.scrollTo( 2385, 500);
     return false;
     });
     });
     </script>
    

    In the body section corresponding nav:

     <ul class="pagination">
    
       <li><a href="" class="topOfPage">1</a></li>
       <li><a href="" class="twoOfPage">2</a></li>
       <li><a href="" class="threeOfPage">3</a></li>
       <li><a href="" class="fourOfPage">4</a></li>
       <li><a href="" class="fiveOfPage">5</a></li>
    
     </ul>  
    

    If you need more ref I found the original code via
    http://nick.boldison.com/websites/jquery/jquery-scroll-to-top-animation-scrollto-plugin/

    I hope that helps you.

    Cheers
    V

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

Sidebar

Related Questions

I have just discovered the nifty unhandled exception handler for cocoa-touch. Now that I
So I've got this UpdatePanel. Inside it I have a nifty little jQuery scroll
I have an object that I instantiate - it's quite nifty as it also
I have this nifty little script that does a nice job of manipulating some
So I have my nifty function that detects changes for me in a form:
While logging in to msn-messenger you have these nifty textboxes that show you what
I have some Scala code that does something nifty with two different versions of
I have come to the conclusion that the very nifty ASP.NET Dynamic Data framework
I have written a nifty thing in Java with a GUI that includes a
I have a class, and I am doing some nifty things with reflection. Now

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.