Get link infomation in a paragraph : Hyper Link « HTML « JavaScript DHTML






Get link infomation in a paragraph

<html>
<head>
<script language="JavaScript">
<!--
var linkText = "";
function showLinks() {
  var item = 1;
  linkText = "LINK INDEX:\n" + "____________\n";
  for (n=0; n < document.links.length; n++) {
      linkText += item + ". " + document.links[n] + "\n";
      item ++;
  }
  alert(linkText);
}
//-->
</script>
<title>An introduction to the Web</title>
</head>
<body><basefont size=4>
<font size="+1">A</font>N <font size="+1">I</font>NTRODUCTION
<font size="+1">T</font>O <font size="+1">T</font>HE
<font size="+1">W</font>EB<hr>
<a href="http://www.java2s.com">www.java2s.com</a>
<a href="http://www.java2s.com">hyperlinks</a><p>
<form><input type="button" value="Quick Link Index" onClick="showLinks()"></form>
</body>
</html>


           
       








Related examples in the same category

1.Specifies the output device for the object
2.Link Methods
3.Link 'href' Example
4.Link 'hreflang' Example
5.Link color
6.Link protocol
7.Link 'port'
8.Link 'title' Example
9.Link type
10.Link host
11.Link host name
12.'aLink' Example
13.'hideFocus' Example
14.'vLink' Example
15.'vlinkColor' Example
16.'alinkColor' Example
17.Inserts a link on a text, a picture, a button or a dynamic picture
18.Mouse over an hyper link
19.Validate Link
20.Output link
21.Illustrate how a URL can be referenced
22.Call function in hyper link
23.Change Link Colors
24.Passing Form Value In URL
25.Using JavaScript linkTo Entities
26.Prevent the browser from following the link
27.Redirect user depending on browser
28.Location: Send the client to a new location (URL/page)
29.URL of a document
30.Change URL and text of a hyperlink
31.Change the target attribute of a link
32.Link focus() and blur()
33.View and change the action URL of a form
34.List the links in a page