From 95aca4b4d8fa62815d4bd412fff1a364f842814a Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Thu, 29 Apr 2021 16:16:42 -0700 Subject: remove retired locales (#699) --- files/it/web/api/document/images/index.html | 52 ----------------------------- 1 file changed, 52 deletions(-) delete mode 100644 files/it/web/api/document/images/index.html (limited to 'files/it/web/api/document/images') diff --git a/files/it/web/api/document/images/index.html b/files/it/web/api/document/images/index.html deleted file mode 100644 index abe27b2a11..0000000000 --- a/files/it/web/api/document/images/index.html +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Document.images -slug: Web/API/Document/images -translation_of: Web/API/Document/images ---- -
{{APIRef("DOM")}}
- -

document.images restituisce una collezione delle immagini nel documento HTML corrente.

- -

Sintassi

- -
var htmlCollection = document.images;
- -

Esempio

- -
var ilist = document.images;
-
-for(var i = 0; i < ilist.length; i++) {
-    if(ilist[i].src == "banner.gif") {
-        // found the banner
-    }
-}
- -

Note

- -

document.images.length – proprietà che restituisce il numero di immagini della pagina.

- -

document.images è parte del DOM HTML, e funziona solo per documenti HTML.

- -

Specifiche tecniche

- - - - - - - - - - - - - - - - - - - - - -
Specifiche tecnicheStatoCommento
{{SpecName('HTML WHATWG', '#dom-document-images', 'Document.images')}}{{ Spec2('HTML WHATWG') }} 
{{SpecName('DOM2 HTML', 'html.html#ID-90379117', 'Document.images')}}{{ Spec2('DOM2 Events') }}Initial definition.
-- cgit v1.2.3-54-g00ecf