addEventListener for multiple elements one after the other?
Hi,
I'm trying to code a kind of note-taking app. There's a sidebar where the various notes are displayed, and when clicked, the corresponding text should be displayed in the large text area. Currently, I have a counter variable that increments when a new note is added. This creates a separate ID for each new button. I also store all notes in an array and can display them. However, I need to add an onclick element to each button with the respective note as a parameter to display them. I do this with addEventListener. But if I simply use document.getElementById(idNames[field]).addEventListener("click", function(){showNotice(toShow)});, the listener only works for the most recently added note. If I use idNames.forEach(element => document.getElementById(element).addEventListener("click", function(){showNotice(toShow);})), all buttons display the same note when clicked.
Does anyone know what to do in my case?
Since you want to respond to an event of the respective button, you also need to attach the lister to it.
There are different ways of solving this. I’ll introduce three.
(a)
(b)
(c)
The first option should be the fastest in performance. In the second way, the button would have to be searched only in the DOM, in the third way a handler becomes via onclick attached.
As regards I would suggest some improvements and simplifications to your code.
1) Collect notes and ID. All you need is an array.
Alternatively, you could also save the notes in an object, the ID corresponding to the property name.
The button will of course also receive the ID as before to be able to create the corresponding association later when clicking.
However, I would ask why you use the note as a button label. On the one hand, your buttons (usually) are quite stretched and on the other hand you don’t need an array/object that stores the notes separately. When you click, you will get as good via
to the note content.
2) I would always try to reduce the search for elements in the DOM. You can save the reference to the text field globally (outside your functions).
Regarding your textbook– I would also like to say that you are currently always applying it as a global variable. This happens with all the variables you do without let/const/var most clear.
3) Two more unnecessary operations are your template string for emptying the text field and plus– Function. Simple, faster and shorter:
4) Functions AddOnClick and AddOnClick2 does not need it, especially since the second function is not well named.
Within the Event Handler you can easily access the attributes of the clicked button.
Example:
When using onclick (see above) indicates the parameter sender on the button.
Thank you for your answer! I will revise my code according to your suggestions, so far I only tried the part with the EventListener and unfortunately it didn’t work: each button receives the onclick element, but all show the same Notitz – the current value of “notice”, although they have assigned another parameter via addEventListener. Apparently, the parameter of all buttons is updated to the newest value of “notice”.
If you don’t find the cause of error, put one Fiddle with your complete code, save it and share its URL here.
Oh, my God! I didn’t think it was that easy. Thank you again, also for all other suggestions for improvement. I’ve only been a member for a few days and meet so helpful people 🙂
You set the variable notice globally. That means, whenever you apply a note, you change the value of the same variable that is displayed when you click.
It must be a local variable in : to be created.
Sorry, that’s the right thing: https://jsfiddle.net/czpjm5bw/
https://jsfiddle.net/zb3j1ndw/
That’s absolutely unsauber programmed. I don’t know any logic to find a mistake. Knowing what language this is would be nice. I guess I’m on JS.
If I understand it correctly, you give out several elements. Each element must be uniquely identifiable for the eventListener. You can’t. Probably it is easier if you insert an onClick event directly into the code of the item by function, because then you don’t have to haunt with the listers. In the end, you’re getting wrong somewhere and bums goes a wrong note.
It can be good that this is all quite cumbersome, I am total beginners. I did not use an onclick because I created the individual buttons via innerHTML and I did not manage to pass parameters in one function.
And excuse me, you’re right, I coded it in JS.
Then maybe you should try smaller projects first 🙂
After I don’t have a whole code, it’s hard to help. Actually, that’s not really cumbersome when you do it right…
You always think haha
In the beginning, I thought that was really small…