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 points to a long description of the current iframe.

Syntax

url = IFrameElement.longDesc
 

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/suppl/more.html";
 

Notes

The "long description" is meant to provide more information about the contents of a frame element. In the case of an <img> element, which also uses the longDesc property, it is meant to accompany <img> alt descriptions.

Specification

DOM Level 2 -- HTMLIFrameElement


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