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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T00:54:34+00:00 2026-06-11T00:54:34+00:00

When an event handler function gets registered like this: element.onload = function() { var

  • 0

When an event handler function gets registered like this:

element.onload = function() 
{   
    var something = Selector("identifier", "inline", 1).FadeIn("inline", 1);
    CenterElement(something);
};

Is there a way to stop the execution once it starts from the inside of another handler function? Let that handler function look like this:

another.onclick = function() 
{
    //Cancel the execution of the above function here
    document.getElementById("start").innerHTML = "Start Slideshow"; 
    this.FadeOut(); 
};

Selector returns a special wrapper object that isn’t relevant for the question itself so the implementation has been omitted.

It’s quite known that it’s possible to prevent execution of a handler function by assigning undefined to the handler variable, but how to stop it if it’s already begun executing?

  • 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-11T00:54:36+00:00Added an answer on June 11, 2026 at 12:54 am

    You’re missing an important concept here.

    In javascript, there is only one thread of execution. While you might think that onclick gets called while onload is executing, that is plain false.

    I don’t know what framework you’re using, but in jQuery you could do the following:

    another.onclick = function() 
    {
        //Cancel the execution of the above function here
        Selector("identifier", "inline", 1).stop();
        // ...other stuff
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to test that an event handler gets called on a clicked element with
When I add event handler to a some elements using query: $('div').mouseover(function () {
my UI is <li><a href='#'>hello</a></li> anchor tag has already event handler i.e. click(function(){}) I
When I use jQuery event listener to handle message event, like below: $(window).on('message', function(e)
Possible Duplicate: Create event handler for OnScroll for web browser control I would like
At the beginning of a VB .NET function I remove an event handler and
In the Page_Load event handler function, I tried the following: protected void Page_Load(object sender,
I use such code to pass arguments to event handler functions. But, in this
this.init = function (onupgradeneeded, onsuccess) { var openRequest = indexedDB.open(dbName); openRequest.onupgradeneeded = function (e)
In this loop, I'm trying to add an event handler to each count. The

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.