Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q188 Is there a way to access the links in a document?

You are here: irt.org | FAQ | JavaScript | Link | Q188 [ previous next ]

You can access all the links in a document using the documents links array:

<SCRIPT LANGUAGE="JavaScript"><!--
for (var i=0; i < document.links.length; i++)
    alert(document.links[i]);
//--></SCRIPT>

Feedback on 'Q188 Is there a way to access the links in a document?'

©2018 Martin Webb