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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:09:06+00:00 2026-05-16T02:09:06+00:00

How do I have a widget listen for clicks on other widgets but not

  • 0

How do I have a widget listen for clicks on other widgets but not listen to normal clicks on itself. For example:

var $dialogWidget = jQuery('#dialogWidget');

$dialogWidget
  .bind('click.btn1.otherWidget',doSomething)
  .bind('click.btn2.otherWidget',doSomething2)
  .bind('click.btn1.otherWidget2',doSomething3);

The problem with this code is that when I click anywhere on $dialogWidget, all of these events that I have bound will be triggered. What I want is this

var $otherWidget = jQuery('#otherWidget');
var $btn1 = $otherWidget.find('a.btn1');
$btn1
    .click(function(){
        $dialogWidget.trigger('click.btn1.otherWidget');
     });

This should be the only way that ‘click.btn1.otherWidget’ event is fired for $dialogWidget.

One possible thing I could do that would be a hack is anytime I am manually firing a click event is to use ‘clicked’ instead of click, but that feels like a hack. Any ideas?

  • 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-16T02:09:07+00:00Added an answer on May 16, 2026 at 2:09 am

    I think the simplest solution is to rename your events, use a name that’s not taken. In this case, just don’t use click, do something like this instead:

    $dialogWidget
      .bind('myClick.btn1.otherWidget',doSomething)
      .bind('myClick.btn2.otherWidget',doSomething2)
      .bind('myClick.btn1.otherWidget2',doSomething3);
    

    Then when you trigger it:

    $dialogWidget.trigger('myClick.btn1.otherWidget');
    

    This was click won’t trigger your namespace custom events that you don’t want fired any other way. To be clear this isn’t a hack, it’s completely normal jQuery behavior, it’s intentionally supported throughout the jQuery event model. Google for jQuery custom events, there are a lot of resources out there around this.

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

Sidebar

Related Questions

I am using a fictional example for this. Say, I have a Widget class
I have tried to use some of the widgets in JQuery UI on an
Let's say that I have a widget that displays summary information about how many
I have a JavaScript widget which provides standard extension points. One of them is
I have a UI widget that needs to be put in an IFRAME both
We have a UI widget on our main UI that uses JavaScript to respond
I have a K* window, and within it, a widget which needs the events
I have created a few small flash widgets that stream .mp3 audio from an
I have a ListView on a page that displays a list of widgets. When
I have source in a bunch of subdirectories like: src/widgets/apple.cpp src/widgets/knob.cpp src/tests/blend.cpp src/ui/flash.cpp In

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.