Design comparison
SolutionDesign
Solution retrospective
Any feedback regarding my SASS. It's the second project I've used SASS with so feeback on the structure would be nice. First time using javascript in a project and I think it looks good, but any feedback is welcomed.
Community feedback
- @AdrianoEscarabotePosted almost 2 years ago
Hello Lisa T, how are you? I truly loved your project's outcome, however I have some advice that I hope you'll find useful:
To make the submit button work only when the user selects a number, we can do this:
button.forEach(function(buttonPushed){ buttonPushed.addEventListener("click", function() { ratingSelected.innerHTML = buttonPushed.innerHTML; submitButton.addEventListener("click",function(){ frontPage.classList.add("hide"); thankYouPage.classList.remove("hide"); }); }); });
The remainder is excellent.
I hope it's useful. 👍
0@lisacodesnowPosted almost 2 years ago@AdrianoEscarabote It worked! Thanks for the recommendation!
1
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord