السلام عليكم.
أرجو المساعدة في الخطأ التالي
Uncaught TypeError: Cannot read properties of undefined (reading 'target')
علما و أن الشيفرة هي التالية:
const btns = document.querySelectorAll("button")
btns.forEach(btn =>{
btn.addEventListener('click',btnAction)
})
function btnAction(e) {
let description = e.target.getAttribute("data-cookie")
console.log(description);
}
btnAction()
شكرا.