|
|
|
|
|
by HerrBertling
952 days ago
|
|
I like datalist quite a bit for „poor man‘s autocomplete“ - you can dynamically fill it via JS and will get the suggestions shown in the completion fields above the keyboard on mobile and… well, something (?) on desktop. Not as nice as an autocomplete, but with way less issues re accessibility etc. Edit: Forgot two things: - You can disable the `fieldset` attribute to disable all inputs within. So properly nest your forms and you‘ll have a simpler way of controlling forms. - Buttons can have a `value` attribute which works great to differentiate between various action paths for e.g. list items (delete, edit,…) |
|