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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T00:51:47+00:00 2026-06-19T00:51:47+00:00

How can I control the error handling when triggering an event with JQuery? We’ve

  • 0

How can I control the error handling when triggering an event with JQuery?

We’ve found that if an error is thrown in a handler function it prevents other handlers from being invoked.

Please see this fiddle.

The problem is copied below:

$(document).on('customEvent', function()
{
  thisIsUndefined.yetIDereferencedIt;
});

$(document).on('customEvent', function()
{
  // Something useful happens here.
  alert('something');
});

$(document).trigger('customEvent');

In the above example, I want the alert to be shown. As I cannot guarantee that I have full control over all of the event handlers I’d like a way to hook into trigger and handle errors per event listener.

Of course, alternative design options are welcome.

  • 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-19T00:51:48+00:00Added an answer on June 19, 2026 at 12:51 am

    If event is already defined by some library, and you cannot control that event at all, I would re-trigger that event after unbind that event like the following.

    http://jsbin.com/uvivat/2/edit

    $("a").on("click", function() {
      Undefined.badFunc
    });
    
    var prevClickEvent = $._data($("a")[0], "events")["click"][0]["handler"];
    
    //console.log(prevClickEvent);
    
    $("a").unbind("click").on("click", function() {
        try {
           prevClickEvent.apply(this);
        } catch(e) {
           console.log(e);
        }
        alert("hi");
        return false;
    })
    

    —– edit —-

    To go through all functions registered,

    var prevClickEvents = $.extend({},$._data( $("a")[0], "events")["click"]);
    
    $("a").unbind("click").on("click", function() {
      var keys = Object.keys(prevClickEvents);
      for (var i=0; i< keys.length; i++) {
        try {
          prevClickEvents[keys[i]]["handler"].call(this);
        } catch(e) {
          console.log(e);
        }
      }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can you help me fix the exception/error message handling in my control architecture script?
The org-mode manual mentions a number of properties that can control the behavior of
I have some JavaScript/jQuery code that watches for the changed event on a checkbox:
My use case is that I would like to do error handling in sinatra.
I can't seem to find a Label control in Silverlight. I get compile errors
I was wondering what settings an application can control to improve battery life in
We have multiple lights in 10x10 grid each of which we can control intensity
Background I'm writing an web application so I can control an Ubuntu Server from
Can we control/give our page security depending the user groups in symfony 1.4. How
how can i control swf background transparency in vb.net.........either with flash.ocx or if there

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.