Design comparison
Solution retrospective
gettting the language and borders from api is quite tricky im unsure about borders name for some countries the are no values for border, please let me know if there are any mistake
Community feedback
- @dreamspicePosted almost 2 years ago
Nice !
How do u implement functionality: ex. type 'pol' and country starts with 'pol' render without submit form? I need to check your code.
U can filter countries from A-Z, with filter method:
state.data.sort(function (x, y) { let a = x.name.toUpperCase(), b = y.name.toUpperCase(); return a === b ? 0 : a > b ? 1 : -1; });
Also add alt attribute to all flag images, close everything in semantic elements, ex. <header></header>, <main></main>, and add aria-labelledby, aria-label and label for select el.
Marked as helpful0@jordan369639Posted almost 2 years ago@dreamspice hello bro how can i re submit the solution
0 - @dreamspicePosted almost 2 years ago
Git add, Git commit, Git push
Only this. And generator new report on this site.
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