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