Answer the question
In order to leave comments, you need to log in
Why are JS event object methods not showing up in Visual Studio Code?
There is the following trivial JavaScript code:
const buttons = document.querySelectorAll('.ui_button');
buttons.forEach(element => { element.addEventListener('click', onButtonDown) });
function onButtonDown(event) {
alert(event);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question