You are currently viewing a snapshot of www.mozilla.org taken on April 21, 2008. Most of this content is highly out of date (some pages haven't been updated since the project began in 1998) and exists for historical purposes only. If there are any pages on this archive site that you think should be added back to www.mozilla.org, please file a bug.


TOC PREV NEXT INDEX

domref



longDesc


The longDesc property specifies a url for a longer description of the contents of the current frame.

Syntax

url = frameElement.longDesc
 
frameElement.longDesc = url
 

Parameters

The url string provides a url where a longer description of the current frame can be found.

Example

f = document.getElementById("main-frame");
 
f.longDesc = "http://www.netcape.com/supplements/more.html";
 

Notes

In the case of FRAME elements, the longDesc property is a way to point to a longer description than the title of the FRAME provides

Specification

DOM Level 2 -- HTMLFrameElement


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX