This form has no JavaScript
Nursery
Out of the press, the form specimens come alive. Everything below — suggestions as you type, validation with an error message, field grouping, a date picker, a colour picker, measurement bars — comes from the browser. The whole page has zero bytes of script.
What the browser did on its own
- Validation with an error message
required,minlength,patternandtype="email"block the submission, point at the offending field and write the message in the person's own language.- Autocomplete with 30 suggestions
- A
<datalist>generated from the catalogue itself, with no in-memory search and no request. - Date and colour pickers
- Native calendar and palette, with keyboard and screen reader already sorted.
- The number beside the slider
- This is the page's honest limit:
<output>shows the initial value, but following the drag needs script. It is the only thing here that does not work without it.