Skip to content
Advertisement

How would I select a group of buttons using classes and if any of them are pressed, a alert pops up

I tried using .addEventListener with querySelector, but for some reason it wouldn’t work.

JavaScript

The error is Uncaught TypeError: Cannot read properties of null (reading 'addEventListener') I don’t understand why the error is happening either.

JavaScript

Anyone have some knowledge they can share? …………………………………………………………. …………………………………………………………………………………………………………………….. Thanks, Leo.

Advertisement

Answer

Just get all the buttons with document.querySelectorAll and add an event in each one of them with the forEach method and addEventListener. You can access the value of a button with event.target.value.

Try the following .js code:

JavaScript
Advertisement