python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Multiple Event Listeners - How To Refactor Them as One Function?
I have a navigation menu with sub menus like so:
<ul>
<li class="sub-menu">
<a class="sub-menu-work" href="#" aria-expanded="false">Work&l...
user2277105
Votes: 0
Answers: 0
How can you select code nodes that were added through templates?
So I am using the template method to dynamically add HTML content in a page, and I want to change the value of an input through an event listener.
Here's a completely random snippet of code as an exam...

Le Phenix 47
Votes: 0
Answers: 1
How to connect a submit click event to an input value to query an api
document.addEventListener("click", function (event) {
// Checking if the button was clicked
if (!event.target.matches("#button")) return;
const options = {
method: 'GET',
...
sam
Votes: 0
Answers: 3
Value of e.target.value undefinned
I have a let: valorImput, coming from an e.target.value from input.
I use this value to compare it with a value in an array and it works. But when I want to get its value it said undefined and I'm no...
Diego Reyes
Votes: 0
Answers: 1