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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:33:49+00:00 2026-05-30T20:33:49+00:00

I have a weird issue whereby I’m programming a carousel-type animation in jQuery. I

  • 0

I have a weird issue whereby I’m programming a carousel-type animation in jQuery. I have it so that when you click a link, it animates a div. To prevent the links from being able to be clicked during the animation I’ve set up a bind condition whereby the link binds to the animation, but during the animation it is unbound, then re-bound at the end. A fiddle best demonstrates: http://jsfiddle.net/aRrmD/1/.

This all works brilliantly well in Fiddlr. However, when I put this into an actual web page it doesn’t work so well if you click the link twice quickly – what you get is the first click triggers the animation but the second click reloads the page because the link is not bound to the animation function during the animation, so the default behaviour of the link kicks in and it becomes a standard link until the animation is complete and the function bound back to it. So if you double click the link, it reloads the page on the second click. I don’t know why it’s not doing this in Fiddlr, it must be something to do with how the events work with that system which makes it different from a stand-alone page.

So what I want to be able to do is make it so that when the link isn’t bound (i.e. during the animation) prevent the default link default behaviour. I know I could get around this by making the anchor not an anchor but this is part of a wider system which unfortunately gives me no control over that.

Thanks for any pointers folks…

  • 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-30T20:33:50+00:00Added an answer on May 30, 2026 at 8:33 pm

    You could test whether the animation is in progress instead of unbinding and binding the event handler:

    function moveNext(e) {
        e.preventDefault();
        var $carousel = $('.carousel');
        if(!$carousel.is(':animated')) {
            $carousel.animate({
                marginLeft: '-=' + widthOfItem
            }, 500)
        }
    }
    

    Reference: :animated


    In case you really wanted to unbind and bind the event handler, add an other event handler, which always prevents the default action:

    $('.btn-next').bind('click', false); // will always prevent the default action
    $('.btn-next').bind('click', moveNext);
    

    Passing false to .bind is the same as passing function() { return false;). This prevents the default action and the event from bubbling up, so it might be exactly what you want. But you could simply pass function(e) { e.preventDefault(); } instead.

    Then, instead of unbinding all event handlers, you only unbind moveNext:

    $('.btn-next').unbind(moveNext);
    

    You should cache a reference to $('.btn-next') though or use $(this).

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

Sidebar

Related Questions

I'm running a weird issue here. I have code that makes jquery ajax calls
I have this weird issue that jquery.load sometimes fails on chrome. I'm not gonna
I have a weird issue that only seems to be affecting IE 7. The
I have a weird issue. I receive the following error that causes a force-close:
I seem to have some weird issue going on that I am sure will
Hey guys I got a weird issue.. I have a datalist that's only loaded
I'm having a weird issue that I can't track down... For context, I have
I have this weird issue. I am trying to create a service that synchs
Having a weird issue. I'm new to Macs and have a windows VM that
I have a weird issue using polymorphism. I have a base class that implements

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.