2.2.2.18 HTMLInputElement

The HTMLInputElement interface specifies any type of input control.

The HTMLInputElement interface has been extended with the following attributes:

  • border

  • dataFld

  • dataFormatAs

  • dataSrc

  • dynsrc

  • height

  • hspace

  • lowsrc

  • indeterminate

  • loop

  • start

  • status

  • vspace

  • width

     //Introduced in Internet Explorer.
     interface HTMLInputElement : HTMLElement {
                 attribute boolean         status;
                 attribute DOMString       border;
        readonly attribute boolean         complete;
                 attribute DOMString       dataFld;
                 attribute DOMString       dataFormatAs;
                 attribute DOMString       dataSrc;
                 attribute DOMString       dynsrc;
                 attribute DOMString       height;
                 attribute long            hspace;
                 attribute DOMString       lowsrc;
                 attribute boolean         indeterminate;
                 attribute long            loop;
                 attribute DOMString       start;
                 attribute long            vspace;
                 attribute DOMString       width;
     };