All You Can Do With: Forms INPUT

W3 Org on INPUT
Not showing in this AYCD page.
  1. type: "hidden" not shown
  2. tabindex is available to control the tab order.(tabindex="5" {index order number}).
  3. alt - not relavent
  4. JavaScript
    • onfocus
    • onblur
    • onselect
    • onchange
    • onclick
    • ondblclick
    • onmousedown
    • onmouseup
    • onmouseover
    • onmousemove
    • onmouseout
    • onkeypress
    • onkeydown
    • onkeyup
    • accept

Basic Basic Example:
<INPUT Type="Text" Name="Basic" Size="45" Value="Basic Example" maxlength="50">
Alternate (Not going to repeat this in examples)
Secret Stuff:
Secret Stuff: <INPUT Type="password" Name="Basic" Size="20" Value="Basic Example" maxlength="12">
readonly Example:
<INPUT Type="Text" Name="Basic" Size="45" Value="Basic Example" maxlength="50" readonly>
tabindex Example:
<INPUT Type="Text" Name="Basic" Size="45" Value="Basic Example" maxlength="50" tabindex="1">
accesskey Example:
<INPUT Type="Text" Name="Basic" Size="45" Value="Basic Example" maxlength="50" accesskey="U">