You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a user can sort words with 6 options.
select 'oldest' then will sort words from oldest to newest.
select 'newest' then will sort words from newest to oldest.
select 'shortest' then will sort words from shortest to longest.
select 'longest' then will sort words from longest to shortest.
select 'a' then will sort alphabetical order.
select 'z' then will reverse alphabetical order.
HTML
a select element with the name attribute "sort" to create a drop-down list.
6 option tags inside the select element define the available options in the drop-down list.
CSS
styling to position the drop-down list correctly on the screen
Listeners
a listener connected to the select, I'll try a "click" event first
Handlers
one handler that sort the word list and re-render the list in the UI
Utils
none.
Components
none. I can reuse the component from add a word to render word list.
this will be developed on the branch 4-feature-sort.
The text was updated successfully, but these errors were encountered:
4. sort words with options
HTML
select
element with the name attribute "sort" to create a drop-down list.option
tags inside theselect
element define the available options in the drop-down list.CSS
Listeners
select
, I'll try a "click" event firstHandlers
Utils
Components
none. I can reuse the component from add a word to render word list.
this will be developed on the branch
4-feature-sort
.The text was updated successfully, but these errors were encountered: