aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/applets/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/document/applets/index.html')
-rw-r--r--files/it/web/api/document/applets/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/files/it/web/api/document/applets/index.html b/files/it/web/api/document/applets/index.html
new file mode 100644
index 0000000000..47328fbe65
--- /dev/null
+++ b/files/it/web/api/document/applets/index.html
@@ -0,0 +1,25 @@
+---
+title: document.applets
+slug: Web/API/Document/applets
+translation_of: Web/API/Document/applets
+---
+<div>{{APIRef("DOM")}}</div>
+
+<p><code>applets</code> restituisce un array contenente le applet presenti nel documento.</p>
+
+<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
+
+<pre class="eval"><i>nodeList</i> = document.applets
+</pre>
+
+<h3 id="Esempio" name="Esempio">Esempio</h3>
+
+<pre class="eval">// ( voglio la seconda applet )
+la_mia_applet_java = document.applets[1];
+</pre>
+
+<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
+
+<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-85113862">DOM Level 2 HTML: applets</a></p>
+
+<p>{{ languages( { "pl": "pl/DOM/document.applets" } ) }}</p>