Design comparison
Solution retrospective
Hello,
Dont hesitate to give me some feedback about this rating. Thanks
Community feedback
- @jbidzPosted almost 2 years ago
Hello there, great work on this challenge
Here's some of my suggestions you might need to consider
The best approach for this challenge is to make a
form
and create fiveradio inputs
inside that form and a button for submit.You need to make sure a user picks a rating before they click on submit. You can do this in the javascript by creating a listener for the form.
form.onsubmit = function(e) { if(thereIsrating) { return true; } return false; }
Additionally, to identify the main content of your page wrap your entire component inside the
main
.If you find this comment helpful, please consider to mark this comment as helpful😊
2
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