Please help me how do i hide these other forms so and only show when the "next" button is clicked | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

Please help me how do i hide these other forms so and only show when the "next" button is clicked

https://code.sololearn.com/WkpMm5k8DLm2/?ref=app

14th Dec 2021, 9:34 AM
Darren 💯
Darren 💯 - avatar
3 Answers
+ 5
To hide it till the button is clicked, Add display:none; To the element in Css And the add element.style.display:block; To the JavaScript function. Let me know if you don't get anything.
14th Dec 2021, 10:13 AM
Chigozie Anyaeji 🇳🇬
Chigozie Anyaeji 🇳🇬 - avatar
+ 3
Thank you
14th Dec 2021, 10:18 AM
Darren 💯
Darren 💯 - avatar
+ 2
1. I set other 2 boxes to be hidden, than on click on button i call function to select next box and display it. If you wanna also to hide prev/clicked box than select this one and set its display to none. 2. You used same id for every button and input. Id can be only one, you cant have more of same ids. This can make bug in your code. So I replaced it with class. https://code.sololearn.com/W7EY4b6M8X0D/?ref=app
14th Dec 2021, 10:16 AM
PanicS
PanicS - avatar