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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:53:37+00:00 2026-05-23T14:53:37+00:00

Through some brief testing it appears that click() will trigger any applicable handlers synchronously

  • 0

Through some brief testing it appears that click() will trigger any applicable handlers synchronously (that is, the handlers are all invoked before click() returns), which is desirable for what I’m developing. However, the jQuery documentation does not seem to guarantee (does not mention one way or the other) that handlers are invoked synchronously.

Is a synchronous behavior guaranteed somewhere, or otherwise safe to assume as cross-browser and future-proof?

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

    Yes, behind the scenes all the click events will run synchronously before the normal default functionality kick in. One way to see this in action is to add one or more click events to an anchor tag. If any of the attached functions return false. It will cancel the default functionality of the anchor tag. In other words, you won’t go to the page in the href attribute.

    $("a:first")
        .click(function() { alert("I was attached first!"); return false; })
        .click(function() { alert("Running despite the earlier 'return false'!");});
    

    You’ll notice that they run synchronously and in the same order they were attached! Any of the attached functions can return false to cancel the normal redirect that happens with anchor tags.

    When using jQuery to trigger the click event, all the attached functions will run before the rest of the chained actions are performed.

    $("a:first")
        .click(function() { alert("I was attached first!"); return false; })
        .click(function() { alert("Running despite the earlier 'return false'!");});
    $("a:first").click().css("color", "red");
    

    So, the code above will ALWAYS show the two alerts then change the link color to red.

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

Sidebar

Related Questions

Reading through some of the questions here, the general concensus seems to be that
I've been parsing through some log files and I've found that some of the
Looking through some old company code, I came across a for loop that looks
Through some bungling in creating and removing publications, I was left with a lot
Looking through some code I came across the following code trTuDocPackTypdBd.update(TrTuDocPackTypeDto.class.cast(packDto)); and I'd like
Going through some of my older Delphi projects and upgrading them to D2009, as
I was just looking through some information about Google's protocol buffers data interchange format.
I've been digging through some parts of the Linux kernel, and found calls like
I'm working through some homework and a question on a previous exam paper asks
Whilst trawling through some old code I came across something similar to the following:

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.