-
I've attempted to use netlify forms
https://docs.netlify.com/forms/setup/
There's a lot of html5 form attributes we could use (required etc.) to save doing validation with javascript:
https:/…
-
Have you considered adding a polyfill for the 'minlength' validation attribute? It is supported natively in Chrome 40+ as is the `validity.tooShort` method.
W3 spec: http://www.w3.org/TR/html5/forms.h…
-
_Anonymous_:
```
HTML5 adds a new attribute to input tags, named "form":
( see http://dev.w3.org/html5/spec/single-page.html#form-associated-element ).
If an input has a "form" attribute, webtest bre…
-
Hi, I'm using 3.2.1 and facing a problem that is either a bug, or I'm doing something very wrong.
Have included an autocomplete field in place of a select widget in a short html5 form, but when it …
-
Does Validator support HTML5 `form` attribute to validate elements outside the `` element? (See http://www.w3.org/TR/html5/association-of-controls-and-forms.html)
E.g.
```
-
With https://github.com/WordPress/performance/pull/1405, the Optimization Detective tests were refactored to be easier to maintain by putting the test cases into separate files. However, when changes …
-
Read:
- [ ] https://www.marcozehe.de/the-web-accessibility-basics/
- [ ] https://dev.to/addyosmani/accessibility-tips-for-web-developers-4cn0
- [ ] https://www.sitepoint.com/how-to-use-aria-effecti…
-
Android understands HTML5's `` but only lets you put in integers. We need to do various decimal places all over the place, so we might need to do something with either jquery mobile or backbone forms …
-
Is there a way to know (and therefore modify the display) if a field is required when rendering create/edit forms?
Would be nice to have a class on the form-group that reflect required validation (ex…
ockam updated
9 years ago
-
Type of inputs
- pattern
- text
- email
- url
- number
- color
- date
- datetime
- month
- tel
- time
- week
- password
- range
- file
Properties
- step
- required
- min
- max
…