aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/document/createcomment/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/document/createcomment/index.html')
-rw-r--r--files/fr/web/api/document/createcomment/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/fr/web/api/document/createcomment/index.html b/files/fr/web/api/document/createcomment/index.html
index 8aaa2be9f3..5e16be2ecb 100644
--- a/files/fr/web/api/document/createcomment/index.html
+++ b/files/fr/web/api/document/createcomment/index.html
@@ -12,19 +12,19 @@ translation_of: Web/API/Document/createComment
<p><code>createComment()</code> crée et retourne un nouveau noeud de type commentaire.</p>
-<h2 id="Syntax" name="Syntax">Syntaxe</h2>
+<h2 id="Syntax">Syntaxe</h2>
<pre class="syntaxbox"><em>CommentNode</em> = document.createComment(data)
</pre>
-<h3 id="Parameters" name="Parameters">Paramètres</h3>
+<h3 id="Parameters">Paramètres</h3>
<dl>
<dt><code>data</code></dt>
<dd>Une chaîne de caractères représentant le contenu du commentaire.</dd>
</dl>
-<h2 id="Example" name="Example">Exemple</h2>
+<h2 id="Example">Exemple</h2>
<pre class="brush:js">var docu = new DOMParser().parseFromString('&lt;xml&gt;&lt;/xml&gt;', "application/xml");
var comment = docu.createComment('Voici un commentaire pas très bien caché');
@@ -37,5 +37,5 @@ alert(new XMLSerializer().serializeToString(docu));
<h2 id="Spécification">Spécification</h2>
<ul>
- <li><a class="external" href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-createComment">createComment</a></li>
+ <li><a href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-createComment">createComment</a></li>
</ul>