You could do this using a library like jquery...&nbsp; <br><br>~Terry<br><br><font face="Tahoma, Arial, Sans-Serif" size="2"><hr align="center" size="2" width="100%"><strong>From</strong>: "   Nick Fitzsimons" &lt;nick@nickfitz.co.uk&gt;<br><strong>Sent</strong>: Thursday, September 06, 2007 11:37 AM<br><strong>To</strong>: "'JavaScript List'" &lt;javascript@lists.evolt.org&gt;<br><strong>Subject</strong>: Re: [Javascript] Listing Images on current page</font><br><br>&gt; What is the difference between <br>&gt; document.getElementsByTagName("img") <br>&gt; and<br>&gt; document.images<br>&gt; <br><br>document.images is of type HTMLCollection:<br><http: www.w3.org="" tr="" 2000="" wd-dom-level-1-20000929="" level-one-html.html#id-75=""><br>708506&gt;<br>whereas the return value of document.getElementsByTagName() is of type<br>NodeList:<br><http: www.w3.org="" tr="" 2000="" wd-dom-level-1-20000929="" level-one-core.html#id-53=""><br>6297177&gt;.<br><br>Both are live, so in practice there isn't much to choose between them; the<br>main difference is that the HTMLCollection supports the "item" and<br>"namedItem" methods, while the nodeList only supports "item".<br><br>Regards,<br><br>Nick.<br>-- <br>Nick Fitzsimons<br>http://www.nickfitz.co.uk/<br><br>_______________________________________________<br>Javascript mailing list<br>Javascript@lists.evolt.org<br>http://lists.evolt.org/mailman/listinfo/javascript<br><br></http:></http:>