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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T21:18:58+00:00 2026-06-13T21:18:58+00:00

I have a menu that slides through several sections of my Website, right and

  • 0

I have a menu that slides through several sections of my Website, right and left.

Originally I had a function ‘goto()’, which was triggered ‘onClick’, and the animation worked exactly as expected.

I wanted to clean up the HTML, so I added a bind handler to a click event in a JS file.

var navanchors = $('#navMain a');
var slider = $('#slider');

init = function() {

navanchors.bind('click', function() {

    var t = $(this);
    var id = t.attr('href');
    var dist = $(id).position().left;

    //animate to the div id.
    slider.animate({
        "right": (dist)
    }, 600);

});
};

init();​

The left animation seems to work as expected, but the right animation is off. On the first click the animation seems to move twice the expected distance. On a second click it resets without animation.

Please have a look at the issue here: http://jsfiddle.net/Kj4bU/1

I have searched and experimented but am at a loss. Any help would be much appreciated.

Thanks

  • 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-06-13T21:19:00+00:00Added an answer on June 13, 2026 at 9:19 pm

    You’re not preventing the default behavior of the click events you handle from occurring. Since the clicks occur on anchor elements, the browser will try to scroll to the clicked anchor’s position during your animation, resulting in the issue you’re experiencing.

    You can use event.preventDefault() to inhibit this behavior:

    navanchors.on("click", function(e) {
        e.preventDefault();
    
        var t = $(this);
        var id = t.attr("href");
        var dist = $(id).position().left;
    
        //animate to the div id.
        slider.animate({
            "right": dist
        }, 600);
    });
    

    You will find an updated fiddle here.

    (Note the code above uses on() instead of bind(), the former being preferred to the latter since jQuery 1.7).

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

Sidebar

Related Questions

I have this menu structure that is used to navigate through content slider panels.
So, I have an animated drop down menu that slides down when your mouse
I have a navigation menu that slides out onto the webpage using .animate(). It
I have a button which slides out a menu using a storyboard by calling
I have a dropdown menu that slides up and down when toggled to reveal
I have a menu which is stylized through jquery and CSS so the structure
I have a simple menu that slides down more UL when the parent LI
I have a slideUp menu, which is acting erratically in that sometimes if I
I have a link ('#login_display') that slides down a sub-menu '('.box_login')` on click. What
i have a menu that contains just one item. Button exit; @Override public boolean

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.