home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- <TITLE>
- Dynamic HTML - Collections
- </TITLE>
-
- <BODY ID=myDocument>
- <H1>Dynamic HTML is Fun!</H1>
- Why?
- <UL>
- <LI>Because of script interaction</LI>
- <LI>Dynamic positioning and properties</LI>
- <LI>It just is!</LI>
- </UL>
-
- <SCRIPT LANGUAGE="VBScript">
- msgbox myDocument.children.length
- for l=0 to myDocument.children.length-1
- document.write myDocument.children(l).tagName & "<BR>"
- next
- </SCRIPT>
-
- </BODY>
- </HTML>
-