Input

<label for="name">Name</label>
<input
  type="text"
  id="name"
  name="name"
  class="w-input"
  data-name="Name"
  maxlength="256"
  placeholder=""
/> 

Programming support

Pseudo-required inputs

In some cases we may need a form element to appear readonly/disabled, but to still perform standard form validations. Currently that does not happen if an element is readonly or disabled ( Chrome ).

e.g. Input Element

Last updated