2.2.2.13 HTMLFrameSetElement

The HTMLFrameSetElement interface specifies a frameset.

The HTMLFrameSetElement interface has been extended with the following attributes:

Use framesets to organize multiple frames and nested framesets. A frameset organizes multiple frames on the screen. The only tags valid within a frameset are frame, nested frameSet, and noFrames.

 //Introduced in Internet Explorer.
 interface HTMLFrameSetElement : HTMLElement {
             attribute Function        onbeforeunload;
             attribute DOMString       border;
             attribute DOMString       borderColor;
             attribute DOMString       frameBorder;
             attribute DOMString       frameSpacing;
             attribute DOMString       name;
 };