August 1999
Intermediate to advanced
1488 pages
72h 53m
English
document.links.length
The length property contains the number of Link objects that are in the document.links array.
Listing 7.145 uses the length property to display the number of links in the HTML document.
<html> <a href="EmployeeList.html">The Employee List Page</a><br> <a href="EmployeeBenefits.html">The Employee Benefits Page</a><br> <script language="JavaScript"> <!--Hide //Display the length of the links array. document.write(document.links.length," links."); //Hide End ---> </script> </html> |
Read now
Unlock full access