August 1999
Intermediate to advanced
1488 pages
72h 53m
English
document.embeds.length
The length property contains the number of objects that are in the embeds[] array.
Listing 7.97 uses the length property to display the number of embedded objects in an HTML document.
<html> <h2>A Circle</h2> <embed src="circle.gif"> <h2>A Square</h2> <embed src="square.gif"> <script language="JavaScript"> <!-- Hide //Display the length of the embeds array. document.write(document.embeds.length," embedded objects."); //Hide End ---> </script> </html> |
Read now
Unlock full access