aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/element/hasattributes/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/element/hasattributes/index.html')
-rw-r--r--files/it/web/api/element/hasattributes/index.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/files/it/web/api/element/hasattributes/index.html b/files/it/web/api/element/hasattributes/index.html
deleted file mode 100644
index ca408ca96d..0000000000
--- a/files/it/web/api/element/hasattributes/index.html
+++ /dev/null
@@ -1,28 +0,0 @@
----
-title: element.hasAttributes
-slug: Web/API/Element/hasAttributes
-tags:
- - DOM
- - Gecko
- - Reference_del_DOM_di_Gecko
- - Tutte_le_categorie
-translation_of: Web/API/Element/hasAttributes
----
-<p>{{ ApiRef() }}</p>
-<h3 id="Sommario" name="Sommario">Sommario</h3>
-<p>Restituisce un valore booleano: <code>true</code> se l'elemento ha un qualunque numero di attributi, altrimenti <code>false</code>.</p>
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-<p>
- <i>
- bool</i>
- = element.hasAttributes()</p>
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-<pre>t1 = document.getElementById("tabella-dati");
-if (t1.hasAttributes()) {
- // fai qualcosa con
- // t1.attributes
-}
-</pre>
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-NodeHasAttrs">hasAttributes </a></p>
-<p>{{ languages( { "en": "en/DOM/element.hasAttributes", "fr": "fr/DOM/element.hasAttributes", "pl": "pl/DOM/element.hasAttributes" } ) }}</p>