aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/document/async/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/api/document/async/index.html')
-rw-r--r--files/es/web/api/document/async/index.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/files/es/web/api/document/async/index.html b/files/es/web/api/document/async/index.html
deleted file mode 100644
index 132fd106e1..0000000000
--- a/files/es/web/api/document/async/index.html
+++ /dev/null
@@ -1,33 +0,0 @@
----
-title: Document.async
-slug: Web/API/Document/async
-translation_of: Web/API/XMLDocument/async
----
-<p><code>document.async</code> es utilizado para indicar cuándo un llamado de  {{domxref("document.load")}} debe ser sincrónico o asincrónico. <code>true</code> es su valor por defecto, indicando que el documento se cargó asincrónicamente.</p>
-
-<p>(Desde la versión 1.4 alpha es posible cargar documentos sincrónicamente)</p>
-
-<h2 id="Ejemplo">Ejemplo</h2>
-
-<pre class="brush:js">function loadXMLData(e) {
- alert(new XMLSerializer().serializeToString(e.target)); // Devuelve los contenidos de querydata.xml como un string
-}
-
-var xmlDoc = document.implementation.createDocument("", "test", null);
-
-xmlDoc.async = false;
-xmlDoc.onload = loadXMLData;
-xmlDoc.load('querydata.xml');</pre>
-
-<h2 id="Specification" name="Specification">Especificación</h2>
-
-<ul>
- <li><a href="http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS">DOM Level 3 Load &amp; Save module</a></li>
-</ul>
-
-<h2 id="Véase_también">Véase también</h2>
-
-<ul>
- <li><a href="/en-US/docs/XML_in_Mozilla" title="XML_in_Mozilla">XML in Mozilla</a></li>
- <li>{{domxref("document.load")}}</li>
-</ul>