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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T04:09:06+00:00 2026-06-07T04:09:06+00:00

i want to disable click function untill every code in it; initialized and completed.

  • 0

i want to disable click function untill every code in it; initialized and completed.

i read these articles and tried what they said but cant make it happen:
event.preventDefault() vs. return false
+
Best way to remove an event handler in jQuery?
+
jQuery – Disable Click until all chained animations are complete

i prepared simple example for this question:

This is DEMO

html

<div class="ele">1</div>
<div class="ele">2</div>
<div class="ele">3</div>

​

jQuery

$('.ele').click(function() {

    if ( !$('.ele').is(':animated') ) {//this works too but;
                         //is:animate duration returns = 2000 but need to be 4000
        $('.ele').stop().animate({'top':'0px'},2000);
        $(this).stop().animate({'top':'100px'},4000);
    } 
    return false;
});
​
  • 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-07T04:09:08+00:00Added an answer on June 7, 2026 at 4:09 am

    Use on() and off() to turn the click function on/off :

    $('.ele').on('click', animateEle);
    
    function animateEle(e) {
        $('.ele').stop().animate({'top':'0px'},2000);
        $(e.target).off('click').stop().animate({'top':'100px'},4000, function() {
            $(e.target).on('click', animateEle);
        });
    }​
    

    DEMONSTRATION

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

Sidebar

Related Questions

I want to disable the 'click' event until an animation is completed. Mark Up
I want to disable click on a certain <div> so that when you select
When i press $('.walk-previous-button') i want to disable the click event until the animation
How can I disable the header click for jQuery tabs. I only want to
i want to disable right click on the webpage but i want enable right
I'm hacking a gallery plugin where I want to disable the click event for
I just want to disable the ability for a user to click on an
I just want to disable the ability for a user to click on an
if (IsBestanswer == True) { $(bestAnswer).addClass('IsBestanswer'); $(bestAnswer).unbind('click'); } bestAnswer.live('click', function() { // some code....
i want to disable button on click for few seconds, and show an image

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.