HTMLCollection используется для таких коллекций, как:
- window.frames
- document.images
- document.applets
- document.links
- document.forms
- document.anchors
- form.elements
- table.rows
- и т.д.
HTMLCollection.prototype.test = function () {
alert("O_o");
};
document.links.test();
try {
document.getElementsByTagName("*").test();
} catch (error) {
alert(error);
}