Handling Events for Many Elements

by kirupa | 2 July 2014

In its most basic case, an event listener deals with events fired from a single element:


This is a companion discussion topic for the original entry at http://www.kirupa.com/html5/handling_events_for_many_elements.htm

How would i make multiple click events to increment, de-increment and push that value into the div?
See Fiddle: https://jsfiddle.net/JOEHOELLER/oorcywyj/15/

I only took a quick glance, but one easy way would be to pass in e.target to the increment and decrement functions. Inside those functions, because you now know exactly which element triggered the incrementing or decrementing, you will know that adjusting the value will end up updating the correct element.

Does my explanation help? If not, I can take some time later this evening and help provide you with a more detailed response.

:smile:

1 Like

Its a little tricky the way you have it because they’re all in the same parent and its hard to tell what number matches which buttons. You can simplify this more by putting the numbers and the buttons in they’re own wrapping div, then from the buttons (e.target) you can walk up to the parent (wrapper) and from that find the number inside. Once you have the right num you can start manipulating its value (which you would want to handle separately for each rather than using a single variable for all)

1 Like

No I am not sure I follow you

I updated the script here; not sure how to massage it into the event delegation script thats commented out below: https://jsfiddle.net/JOEHOELLER/n7ukn6av/4/

Here is a working (I’m guessing this is what you want):

https://jsfiddle.net/n7ukn6av/5/

If anything is confusing, just ask :slight_smile:

That sir, is some crazy lean JavaScript. The frameworks seem to bulk things up a bit and not allow you to understand core JS.

Kudos to you. I shall study the code, commit to memory and refactor OO (prototype) style so I can re-use it over & over.

I would have explained it more yesterday, but I had a meeting. I included some comments to help explain things more clearly:

https://jsfiddle.net/n7ukn6av/6/

Thank you so much, I am going to attempt to add in the ability to accept min and max values.

function updateFrom(button) { <<< so button is just a name for any argument that could be there that targets the button you select?

yup. Its a custom function I made up on my own and I picked the name button though I could have called it anything else as well. The value of button comes from the click handler. But because this function is defined this way, we could call it from anywhere, not just a click handler, as long as we had a reference to the button we wanted to calculate an update from.

so its the same as saying:

“< div onclick=“cliker(x)”>”

function clicker(x) {
//event listener targeting THIS elem
}

Not exactly the same. clicker in your example is still being treated as an event handler - something specific to events, accepting a single argument that is from an event. It doesn’t work well in contexts other than being an event handler. updateFrom is more generic. It can be called anywhere at any time and doesn’t rely on an event. This makes it more versatile than any other, ordinary event handler.

That said, in onclick attributes on html, you’re just running arbitrary code that is wrapped in an event handler. So technically clicker doesn’t have to be an event handler. It can ignore the event argument and just be a generic function too. But most of the time when you’re writing attribute code like that, its in the form of a handler specific to that attribute (e.g. a click handler for the onclick event)

2 Likes

By the way, something interesting you can do is write an attribute handler and then check the handler property of that element in javascript. For example:

<a onclick="alert(this.nodeName)">Click Me</a>
var a = document.getElementsByTagName('a')[0];
console.log(a.onclick); // =>
/*
function onclick(event) {
  alert(this.nodeName)
}
*/

Here you can see the wrapper handler that goes around the code that was put in the onclick attribute. Its a single-argument function with a parameter named event. That function is also called in the context of that element so this in that call is the element itself.

1 Like

Nice to see you joined kforums @joe_hoeller, I remember when I would look @senocular code back in the 90s and think how stupid I was. Nothing has changed LOL

3 Likes

@grimdeath - one of my most favoritest people! :love: :love: :love:

The feelings mutual master :yoda:

Group hug!!! :hamburger:

I’m still confused. What if I have different buttons/links with different parents throughout my entire site that each have a different HTML class/id, but all use the same event listener. Would this code still work?

Example:
var button1 = document.querySelector(’#parent1 .button’).addEventListener…;
var button2 = document.querySelector(’#parent2 .button’).addEventListener…;
var button3 = document.querySelector(’#parent3 .button’).addEventListener…;

I don’t have access to modifying the HTML either.