diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:46:50 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:46:50 +0100 |
commit | a55b575e8089ee6cab7c5c262a7e6db55d0e34d6 (patch) | |
tree | 5032e6779a402a863654c9d65965073f09ea4182 /files/es/web/api/document/async/index.html | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.tar.gz translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.tar.bz2 translated-content-a55b575e8089ee6cab7c5c262a7e6db55d0e34d6.zip |
unslug es: move
Diffstat (limited to 'files/es/web/api/document/async/index.html')
-rw-r--r-- | files/es/web/api/document/async/index.html | 33 |
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 & 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> |