2.2.2.12 HTMLFrameElement

The HTMLFrameElement interface specifies an individual frame within a frameset.

The HTMLFrameElement interface has been extended with the following attributes:

  • contentWindow

  • allowTransparency

  • border

  • borderColor

  • dataFld

  • dataFormatAs (not supported by this element)

  • dataSrc

  • frameBorder

  • frameSpacing

  • height

  • width

     //Introduced in Internet Explorer.
     interface HTMLFrameElement : HTMLElement {
                 attribute Window          contentWindow;
                 attribute boolean         allowTransparency;
                 attribute DOMString       border;
                 attribute DOMString       borderColor;
                 attribute DOMString       dataFld;
                 attribute DOMString       dataFormatAs;
                 attribute DOMString       dataSrc;
                 attribute DOMString       frameSpacing;
                 attribute DOMString       frameBorder;
                 attribute DOMString       height;
                 attribute DOMString       width;
     };