aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/anchors/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/document/anchors/index.html')
-rw-r--r--files/it/web/api/document/anchors/index.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/files/it/web/api/document/anchors/index.html b/files/it/web/api/document/anchors/index.html
deleted file mode 100644
index 2b7261420d..0000000000
--- a/files/it/web/api/document/anchors/index.html
+++ /dev/null
@@ -1,31 +0,0 @@
----
-title: document.anchors
-slug: Web/API/Document/anchors
-translation_of: Web/API/Document/anchors
----
-<div>{{APIRef("DOM")}}</div>
-
-<p><code>anchors</code> restituisce un Array contenente tutte le ancore presenti nel documento.</p>
-
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-
-<pre class="eval"><i>nodeList</i> = document.anchors
-</pre>
-
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-
-<pre class="eval">if ( document.anchors.length &gt;= 5 ) {
- dump("Ho trovato troppe ancore");
- window.location = "http<span class="nowiki">:</span>//www.google.com";
-}
-</pre>
-
-<h3 id="Note" name="Note">Note</h3>
-
-<p>Per ragioni di compatibilità all'indietro, l'array restituito contiene solo le ancore che hanno un attributo <code>name</code> e non quelle che hanno solo l'attributo <code>id</code>.</p>
-
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-
-<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-7577272">DOM Level 2 HTML: anchors</a></p>
-
-<p>{{ languages( { "ja": "ja/DOM/document.anchors", "pl": "pl/DOM/document.anchors" } ) }}</p>