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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T00:40:03+00:00 2026-06-16T00:40:03+00:00

I need to use javascript only for this project. Sorry, no jQuery (I feel

  • 0

I need to use javascript only for this project. Sorry, no jQuery (I feel ashamed as well).

I am adding an addEventListener to a div. “Problem” is that it applies to all its children, too.

Is there a way to avoid this, and have the listener work only for that div?

Thankd in advance.


my code looks like this:

document.getElementById(myObj.id).addEventListener("mousedown", myObjDown, false);

function myObjDown() {
  //do stuff here
}
  • 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-16T00:40:04+00:00Added an answer on June 16, 2026 at 12:40 am

    You can tell which element the event actually fired on by reading event.target in your callback.

    var el = ...
    el.addEventListener('click', function(event){
      if (el !== event.target) return;
    
      // Do your stuff.
    
    }, false);
    

    The other option would be to have handlers bound to the child elements to prevent the event from reaching the parent handler, but that is more work and potentially hides events from things that might actually be listening for them above the parent.

    Update

    Given your example code, you should be able to do this.

    var el = document.getElementById(myObj.id);
    el.addEventListener("mousedown", myObjDown, false);
    
    function myObjDown(event) {
      if (el !== event.target) return;
    
      //do stuff here
    }
    

    Also as a general note, keep in mind that none if this will work on IE < 9 because addEventListener is not supported on those.

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

Sidebar

Related Questions

Right up front: this project doesn't use JQuery. We have some third-party JavaScript; it's
I need to use basic javascript here and I'm not well versed with it.
I need to segment text using fullstops using PHP/Javascript.The problem is if I use
I think I will need to use javascript to do this so I put
I need to use javascript to get the itemid of the current page in
I need to use the javascript loop variable i in the loop block. for
I need to use Substring in Javascript. But despite my searches, i have an
I need to use a code in JavaScript to determine a user, I decided
I have a javascript which I didn't write but I need to use it
I have a large javascript which I didn't write but I need to use

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.