Design comparison
SolutionDesign
Solution retrospective
Definitely one of the toughest challenges I've done, any feedback related to the functionalities and animations of the page are much appreciated :)
Community feedback
- @seanred360Posted over 3 years ago
Your javascript was very organized. I referenced it a bunch for my solution. I found that
const specificButtons = { button1: "#bamboo", button2: "#black", button3: "#mahogany" };
on line 17 was not needed. It is a complicated way to get an href from a button. You can replaceconst inputID = specificButtons[b.id];
on line 148 withconst inputID = b.getAttribute("href");
and get the same result.0 - @hisham-axPosted over 3 years ago
god greate how you usde javascript in checkbox
0
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