JavaScript Tutorial/Document/links
Change links
<html>
<head>
<title>Link Modifier</title>
</head>
<body>
<h1>Link Modifier</h1>
<P>
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
</p>
<script language="javascript" type="text/javascript">
<!--
var indexPage = "/index.html";
var allLinks = document.links;
for (var i=0; i<allLinks.length; i++) {
allLinks[i].href = allLinks[i].href + indexPage;
}
//-->
</script>
</body>
</html>
document.links
Syntax
document.links
document.links[index]
document.links.length
The length property contains the number of Link objects that are in the document.links array.
<html>
<a href="http://www.wbex.ru">B Page</a><br>
<a href="http://www.wbex.ru">A Page</a><br>
<script language="JavaScript">
<!--
document.write(document.links.length," links.");
-->
</script>
</html>
Get all links on a page
<html>
<head>
<title>Get all links on a page</title>
</head>
<body>
<h1>Get all links on a page</h1>
<P>
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
<a href="http://www.wbex.ru/">Example</a><br />
</p>
<script language="javascript" type="text/javascript">
<!--
var allLinks = document.links;
for (var i=0; i<allLinks.length; i++) {
document.write(allLinks[i].href+"<BR/>");
}
//-->
</script>
</body>
</html>