en.javascript.info/2-ui/3-event-details/1-mouse-events-basics/01-selectable-list/task.md
Ilya Kantor 99cbc65d80 minor
2019-08-14 23:56:32 +03:00

562 B

importance: 5


Selectable list

Create a list where elements are selectable, like in file-managers.

  • A click on a list element selects only that element (adds the class .selected), deselects all others.
  • If a click is made with key:Ctrl (key:Cmd for Mac), then the selection is toggled on the element, but other elements are not modified.

The demo:

[iframe border="1" src="solution" height=180]

P.S. For this task we can assume that list items are text-only. No nested tags.

P.P.S. Prevent the native browser selection of the text on clicks.