aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/xmldocument/async
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-10-02 17:20:24 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-02 17:30:20 +0200
commit1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch)
tree30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/xmldocument/async
parentc05efa8d7ae464235cf83d7c0956e42dc6974103 (diff)
downloadtranslated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip
convert content to md
Diffstat (limited to 'files/fr/web/api/xmldocument/async')
-rw-r--r--files/fr/web/api/xmldocument/async/index.md30
1 files changed, 14 insertions, 16 deletions
diff --git a/files/fr/web/api/xmldocument/async/index.md b/files/fr/web/api/xmldocument/async/index.md
index d9f8142761..b7837662e4 100644
--- a/files/fr/web/api/xmldocument/async/index.md
+++ b/files/fr/web/api/xmldocument/async/index.md
@@ -10,33 +10,31 @@ tags:
- XML
translation_of: Web/API/XMLDocument/async
---
-<p>{{APIRef("DOM")}}{{Deprecated_header}} {{Non-standard_header}}</p>
+{{APIRef("DOM")}}{{Deprecated_header}} {{Non-standard_header}}
-<p><code>document.async</code> peut être défini pour indiquer si un appel {{domxref("document.load")}} doit être une requête asynchrone ou synchrone. <code>true</code> (<em>vrai</em>) est la valeur par défaut, indiquant que les documents doivent être chargés de façon asynchrone.</p>
+`document.async` peut être défini pour indiquer si un appel {{domxref("document.load")}} doit être une requête asynchrone ou synchrone. `true` (_vrai_) est la valeur par défaut, indiquant que les documents doivent être chargés de façon asynchrone.
-<p>(Il a été possible de charger des documents de manière synchrone depuis 1.4 alpha.)</p>
+(Il a été possible de charger des documents de manière synchrone depuis 1.4 alpha.)
-<h2 id="Exemple">Exemple</h2>
+## Exemple
-<pre class="brush:js">function loadXMLData(e) {
- alert(new XMLSerializer().serializeToString(e.target)); // Donne le contenu querydata.xml sous forme "string" (<em>chaîne de caractère</em>)
+```js
+function loadXMLData(e) {
+ alert(new XMLSerializer().serializeToString(e.target)); // Donne le contenu querydata.xml sous forme "string" (chaîne de caractère)
}
var xmlDoc = document.implementation.createDocument("", "test", null);
xmlDoc.async = false;
xmlDoc.onload = loadXMLData;
-xmlDoc.load('querydata.xml');</pre>
+xmlDoc.load('querydata.xml');
+```
-<h2 id="Specification">Spécification</h2>
+## Spécification
-<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>
+- [DOM Level 3 Load & Save module](http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS)
-<h2 id="Voir_aussi">Voir aussi</h2>
+## Voir aussi
-<ul>
- <li><a href="/fr/docs/XML_dans_Mozilla">XML in Mozilla</a></li>
- <li>{{domxref("document.load")}}</li>
-</ul>
+- [XML in Mozilla](/fr/docs/XML_dans_Mozilla)
+- {{domxref("document.load")}}