aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/document/applets/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/api/document/applets/index.html')
-rw-r--r--files/es/web/api/document/applets/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/files/es/web/api/document/applets/index.html b/files/es/web/api/document/applets/index.html
new file mode 100644
index 0000000000..e6ecf71b60
--- /dev/null
+++ b/files/es/web/api/document/applets/index.html
@@ -0,0 +1,30 @@
+---
+title: document.applets
+slug: Web/API/Document/applets
+translation_of: Web/API/Document/applets
+---
+<p>{{APIRef("DOM")}}</p>
+
+<h3 id="Resumen" name="Resumen">Resumen</h3>
+
+<p><code>applets</code> Devuelve una lista ordenada de los
+
+ <i>applets</i>
+ del documento.</p>
+
+<h3 id="Sintaxis" name="Sintaxis">Sintaxis</h3>
+
+<pre class="eval"><i>nodeList</i> = document.applets
+</pre>
+
+<h3 id="Ejemplo" name="Ejemplo">Ejemplo</h3>
+
+<pre class="eval">// ( Cuando sabes que el segundo<i>applet</i> es el que quieres )
+my_java_app = document.applets[1];
+</pre>
+
+<h3 id="Especificaci.C3.B3n" name="Especificaci.C3.B3n">Especificación</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( { "en": "en/DOM/document.applets", "pl": "pl/DOM/document.applets" } ) }}</p>