Problem with event handlers and DOM [SOLVED] | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Problem with event handlers and DOM [SOLVED]

https://drive.google.com/file/d/1Y1FPxcNWdv2IUTHSUmfjbvlUWCf_L8lp/view?usp=drivesdk This is a link to the video of my problem Here is the code JS var page = document.querySelectorAll(".details"); var btn = document.querySelectorAll("button"); var book = document.querySelector(".card"); var place = 0; for(var i = 0; i < btn.length; i++){      place = i;     btn[i].addEventListener("click", function(){ page[place].style.transform = "rotateY(-135deg)";     }); } book.addEventListener("mouseleave", function(){ for(var i = 0; i < page.length; i++){ page[i].style.transform = ""; } }); The first button worked fine But other buttons are not working Please tell me a solution for it. You can Debug at Codepen https://codepen.io/sarthakg043-the-selector/pen/jOOVyNQ

19th Oct 2019, 2:22 PM
Sarthak Gupta
Sarthak Gupta - avatar
4 Answers
+ 2
https://code.sololearn.com/WFM0OdR6Hf1B/#js
19th Oct 2019, 3:07 PM
MO ELomari
+ 3
For the sake of learning and for others who will read and may find this useful later on, would you mind to explain about the fix please Mohamed ELomari Thanks a bunch 👍
19th Oct 2019, 4:22 PM
Ipang
+ 2
Mohamed ELomari Thank you so much sir.😇
19th Oct 2019, 3:31 PM
Sarthak Gupta
Sarthak Gupta - avatar
+ 2
Ipang that's not a big deal. I found a new and more easy fix. Just replace var with let in the previous code and everything will go well.
29th Nov 2019, 4:36 PM
Sarthak Gupta
Sarthak Gupta - avatar