HTMLFrameElement Interface


The HTMLFrameElement Interface creates a frame.
IDL Definition

Interface HTMLFrameElement : HTMLElement {

           attribute  DOMString                  frameBorder;
           attribute  DOMString                  longDesc;
           attribute  DOMString                  marginHeight;
           attribute  DOMString                  marginWidth;
           attribute  DOMString                  name;
           attribute  boolean                    noResize;
           attribute  DOMString                  scrolling;
           attribute  DOMString                  src;
};

Semantic Requirements

  1. The frameBorder attribute specifies a request for frame borders.
  2. The longDesc attribute specifies the URI designating a long description of this image or frame.
  3. The marginHeight attribute specifies the frame's margin height in pixels.
  4. The marginWidth attribute specifies the frame's margin width in pixels.
  5. The name attribute specifies the frame name (object of the target attribute).
  6. The noResize attribute when true, forbid user from resizing frame.
  7. the scrolling attribute specify whether or not the frame should have scrollbars.
  8. The src attribute specifies a URI designating the original frame contents.

If you have comments or suggestions, email me at mbrady@nist.gov