Expand all code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Expand all code?

I have some code that opens and closes drop downs but I wanted to add a expand all button and for some reason the code is not working. I think it is because I am not using the correct DOM handler. I used “nextElementSibling” to control the selection of the action item from the button but now I want it to control all of them. Help!! 😁 https://code.sololearn.com/WgH3825nLI1Y/?ref=app

23rd Aug 2018, 9:08 PM
Charles W Hsu
Charles W Hsu - avatar
19 Answers
+ 3
Charles W Hsu i have edited it for you. see my code. both expands on expand all button Upvote / follow / if you find my ans useful https://code.sololearn.com/WYtu9JJwukHG
23rd Aug 2018, 9:34 PM
Amir Ahmad
Amir Ahmad - avatar
23rd Aug 2018, 10:03 PM
Amir Ahmad
Amir Ahmad - avatar
+ 3
Charles W Hsu loop just work on the last element
23rd Aug 2018, 10:13 PM
Amir Ahmad
Amir Ahmad - avatar
+ 3
i have understood but the loop is effecting only on the last loop
23rd Aug 2018, 10:16 PM
Amir Ahmad
Amir Ahmad - avatar
+ 3
24th Aug 2018, 1:48 PM
Amir Ahmad
Amir Ahmad - avatar
+ 3
Charles W Hsu when u solve your problem share it with me
24th Aug 2018, 2:34 PM
Amir Ahmad
Amir Ahmad - avatar
+ 1
Line 103 all[i].addEventListener("click", Error msg says this is 'undefined'. Value of 'i' becomes 1 from the previous part. There is only 1 element in 'all' so it's undefined. This gets rid of that error, but further errors are encountered as you go. This should help a bit though. I'm on train and nearly at work so that's all I got time for 😁
23rd Aug 2018, 9:46 PM
Duncan
Duncan - avatar
+ 1
Charles W Hsu you've had numerous responses to help you, including mine. It would be appreciated if there was some sort of thanks, even if it's just liking the responses. People are more inclined to help when there is gratitude.
24th Aug 2018, 12:51 AM
Duncan
Duncan - avatar
+ 1
Hi Charles W Hsu, my apologies, I missed the last part of that post. Thank you and hope you can sort out your problem.
24th Aug 2018, 4:08 AM
Duncan
Duncan - avatar
+ 1
its not that big of a deal. I am learning and am wondering why it is not working with how I planned out the code. It is my low level knowledge of the code that is frustrating me.
24th Aug 2018, 4:15 AM
Charles W Hsu
Charles W Hsu - avatar
+ 1
Have a look at this suggestion. I added 'onclick=expandAll(); The function then just loops through the number of elements of that class you defined and changes the maxheight. Think this is what you meant. You should be able to add as many as you like with the same class and not have to change the script. You may just want to tidy up the maxheight as my value was just an example. https://code.sololearn.com/WA7gqk02addS/?ref=app
24th Aug 2018, 4:24 AM
Duncan
Duncan - avatar
+ 1
Thanks Duncan. I will try this out tomorrow. I really apreciate the help. I learn with every problem I have.
24th Aug 2018, 4:58 AM
Charles W Hsu
Charles W Hsu - avatar
0
Amir, The problem with this code is there is no way to toggle the button to expand all and then back to collapsing all. Also, I will not be able to add new div's without also changing the script code at the bottom. I was hoping to find a solution to this by calling all of the classes on the page.
23rd Aug 2018, 9:45 PM
Charles W Hsu
Charles W Hsu - avatar
0
Amir, I gave an example. You will see that when you add a new "div" it doesn't work. This is the reason I wrote the code the way I did. Your idea makes it work but the problem is I cant randomly add new div's tot he HTML. This is the reason why I am hoping to just find the solution to the issue by just finding the way to edit just the DOM element. I really appreciate your efforts though! Thank you! https://code.sololearn.com/W2duhfTG1iy9/?ref=app
23rd Aug 2018, 10:11 PM
Charles W Hsu
Charles W Hsu - avatar
0
Amir, I just added the code link. Take a look and you will see what I am talking about.
23rd Aug 2018, 10:14 PM
Charles W Hsu
Charles W Hsu - avatar
0
Yes, that is the problem. Here is an example of the code with just the individual expanding buttons. https://code.sololearn.com/WxSUwiOyUaPm
23rd Aug 2018, 10:25 PM
Charles W Hsu
Charles W Hsu - avatar
0
If you read above I thanked Amir. Duncan, I thank you for your help as well. I am using another blog right now. so I dont check this very often. I am sorry you feel I have not thanked you.
24th Aug 2018, 1:23 AM
Charles W Hsu
Charles W Hsu - avatar
0
Thanks Amir!
24th Aug 2018, 2:30 PM
Charles W Hsu
Charles W Hsu - avatar
0
Sure!! I will post it when I fix it.
24th Aug 2018, 2:37 PM
Charles W Hsu
Charles W Hsu - avatar