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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:56:44+00:00 2026-05-23T17:56:44+00:00

I have a handler attached to an event and I would like it to

  • 0

I have a handler attached to an event and I would like it to execute only if it is triggered by a human, and not by a trigger() method. How do I tell the difference?

For example,

$('.checkbox').change(function(e){
  if (e.isHuman())
  {
    alert ('human');
  }
});

$('.checkbox').trigger('change'); //doesn't alert
  • 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-23T17:56:45+00:00Added an answer on May 23, 2026 at 5:56 pm

    You can check e.originalEvent: if it’s defined the click is human:

    Look at the fiddle http://jsfiddle.net/Uf8Wv/

    $('.checkbox').change(function(e){
      if (e.originalEvent !== undefined)
      {
        alert ('human');
      }
    });
    

    my example in the fiddle:

    <input type='checkbox' id='try' >try
    <button id='click'>Click</button>
    
    $("#try").click(function(event) {
        if (event.originalEvent === undefined) {
            alert('not human')
        } else {
            alert(' human');
        }
    
    
    });
    
    $('#click').click(function(event) {
        $("#try").click();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been unable to trigger an onselect event handler attached to a <div>
Setup: I have attached an event handler on the WebBrowser control something like this...
I have written an event handler method and attached it to the Paint event
I have an onbeforeunload event handler attached to the page which executes every time
I have a custom error handler attached to E_ALL PHP errors. In an external
When you have a div with a click handler attached, the iphone darkens the
I have an HTML input box <input type=text id=foo value=bar> I've attached a handler
In some VB6 code, I have a handler for a TreeView's Collapse event: Private
I have some event handler on a boundary class that manages a persistence mechanism
I'm having an issue with an event handler in SharePoint. I have a list

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.