blob: 0c2e83440a676ff896ed3b315f267ef66f140b7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
---
title: Document.embeds
slug: Web/API/Document/embeds
tags:
- API
- Documento
- Ejemplo
- HTML DOM
- Propiedad
translation_of: Web/API/Document/embeds
---
<div>{{ApiRef}}</div>
<p><strong><code>embeds</code></strong> es una propiedad de sólo lectura de la interfaz de {{domxref("Document")}}. Devuelve una lista con los elementos {{htmlelement("object")}} incrustados dentro del documento actual.</p>
<h2 id="Sintaxis">Sintaxis</h2>
<pre class="syntaxbox"><var>nodeList</var> = document.embeds
</pre>
<h3 id="Valor">Valor</h3>
<p>Una {{domxref("HTMLCollection")}}.</p>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificación</th>
<th scope="col">Estado</th>
<th scope="col">Comentario</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-document-embeds', 'Document.embeds')}}</td>
<td>{{ Spec2('HTML WHATWG') }}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_con_Navegadores">Compatibilidad con Navegadores</h2>
<div>{{Compat("api.Document.embeds")}}</div>
|