w3schools
  
HOME HTML CSS XML JAVASCRIPT ASP PHP SQL MORE...   References Examples Forum About

Document links Collection


Document Object Reference Document Object

Definition and Usage

The links collection returns an array of all the links in the current document.

Tip: The links collection counts <a href=""> tags and <area> tags.

Syntax

document.links[].property


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The links collection is supported in all major browsers.


Examples

Example 1

Return the number of links in the document:

<html>
<body>

<img src ="planets.gif" width="145" height="126" alt="Planets" usemap ="#planetmap" />
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>

<p><a href="/js/">JavaScript Tutorial</a></p>

<p>Number of areas/links:
<script type="text/javascript">
document.write(document.links.length);
</script></p>

</body>
</html>

The output of the code above will be:

Number of areas/links: 4

Try it yourself »

Example 2

Return the id of the first link in the document:

<html>
<body>

<img src ="planets.gif" width="145" height="126" alt="Planets" usemap ="#planetmap" />
<map name="planetmap">
<area id="sun" shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
<area id="mercury" shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
<area id="venus" shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>

<p><a id="javascript" href="/js/">JavaScript Tutorial</a></p>

<p>Id of first area/link:
<script type="text/javascript">
document.write(document.links[0].id);
</script></p>

</body>
</html>

The output of the code above will be:

Id of first area/link: sun

Try it yourself »


Document Object Reference Document Object

WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Top 10 Web Hosting
UK Reseller Hosting
Web Hosting
FREE Web Hosting
Top Web Hosting
Cheap UK Web Hosting
WEB BUILDING
XML Editor – Free Trial!
FREE Flash Website
FREE Web Templates
SEO Company
EDUCATION
US Web Design Schools
HTML Certification
JavaScript Certification
XML Certification
PHP Certification
ASP Certification
STATISTICS
Browser Statistics
Browser OS
Browser Display
FLIGHT TICKETS
Find the cheapest flight
to any destination now!
SHARE THIS PAGE