From c05efa8d7ae464235cf83d7c0956e42dc6974103 Mon Sep 17 00:00:00 2001 From: julieng Date: Sat, 2 Oct 2021 17:20:14 +0200 Subject: move *.html to *.md --- .../fr/web/api/htmlselectelement/remove/index.html | 88 ---------------------- files/fr/web/api/htmlselectelement/remove/index.md | 88 ++++++++++++++++++++++ 2 files changed, 88 insertions(+), 88 deletions(-) delete mode 100644 files/fr/web/api/htmlselectelement/remove/index.html create mode 100644 files/fr/web/api/htmlselectelement/remove/index.md (limited to 'files/fr/web/api/htmlselectelement/remove') diff --git a/files/fr/web/api/htmlselectelement/remove/index.html b/files/fr/web/api/htmlselectelement/remove/index.html deleted file mode 100644 index 71b6fd591e..0000000000 --- a/files/fr/web/api/htmlselectelement/remove/index.html +++ /dev/null @@ -1,88 +0,0 @@ ---- -title: HTMLSelectElement.remove() -slug: Web/API/HTMLSelectElement/remove -translation_of: Web/API/HTMLSelectElement/remove ---- -

{{ APIRef("HTML DOM") }}

- -

La méthode HTMLSelectElement.remove() enlève l'option à l'index choisi dans la liste des options de cet objet select.

- -

Syntaxe

- -
collection.remove(index);
-
- -

Paramètre

- - - -
-
- -

Exemple

- -
var sel = document.getElementById("maListe");
-sel.remove(1);
-
-/*
-  Prend l'objet select existant suivant :
-
-  <select id="maListe" name="maListe">
-    <option value="1">Option: Value 1</option>
-    <option value="2">Option: Value 2</option>
-    <option value="3">Option: Value 3</option>
-  </select>
-
-  Et le transforme en:
-
-  <select id="maListe" name="maListe">
-    <option value="1">Option: Value 1</option>
-    <option value="3">Option: Value 3</option>
-  </select>
-*/
- 
- -

Spécifications

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SpécificationStatusComment
{{SpecName('HTML WHATWG', '#dom-select-remove', 'HTMLSelectElement.remove()')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'forms.html#dom-select-remove', 'HTMLSelectElement.remove()')}}{{Spec2('HTML5 W3C')}}Is a snapshot of {{SpecName("HTML WHATWG")}}.
{{SpecName('DOM2 HTML', 'html.html#ID-33404570', 'HTMLSelectElement.remove()')}}{{Spec2('DOM2 HTML')}} 
{{SpecName('DOM1', 'level-one-html.html#ID-33404570', 'HTMLSelectElement.remove()')}}{{Spec2('DOM1')}}Initial definition.
- -

Compatibilité des navigateurs

- -

{{Compat("api.HTMLSelectElement.remove")}}

- -

Voir aussi

- - diff --git a/files/fr/web/api/htmlselectelement/remove/index.md b/files/fr/web/api/htmlselectelement/remove/index.md new file mode 100644 index 0000000000..71b6fd591e --- /dev/null +++ b/files/fr/web/api/htmlselectelement/remove/index.md @@ -0,0 +1,88 @@ +--- +title: HTMLSelectElement.remove() +slug: Web/API/HTMLSelectElement/remove +translation_of: Web/API/HTMLSelectElement/remove +--- +

{{ APIRef("HTML DOM") }}

+ +

La méthode HTMLSelectElement.remove() enlève l'option à l'index choisi dans la liste des options de cet objet select.

+ +

Syntaxe

+ +
collection.remove(index);
+
+ +

Paramètre

+ + + +
+
+ +

Exemple

+ +
var sel = document.getElementById("maListe");
+sel.remove(1);
+
+/*
+  Prend l'objet select existant suivant :
+
+  <select id="maListe" name="maListe">
+    <option value="1">Option: Value 1</option>
+    <option value="2">Option: Value 2</option>
+    <option value="3">Option: Value 3</option>
+  </select>
+
+  Et le transforme en:
+
+  <select id="maListe" name="maListe">
+    <option value="1">Option: Value 1</option>
+    <option value="3">Option: Value 3</option>
+  </select>
+*/
+ 
+ +

Spécifications

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SpécificationStatusComment
{{SpecName('HTML WHATWG', '#dom-select-remove', 'HTMLSelectElement.remove()')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'forms.html#dom-select-remove', 'HTMLSelectElement.remove()')}}{{Spec2('HTML5 W3C')}}Is a snapshot of {{SpecName("HTML WHATWG")}}.
{{SpecName('DOM2 HTML', 'html.html#ID-33404570', 'HTMLSelectElement.remove()')}}{{Spec2('DOM2 HTML')}} 
{{SpecName('DOM1', 'level-one-html.html#ID-33404570', 'HTMLSelectElement.remove()')}}{{Spec2('DOM1')}}Initial definition.
+ +

Compatibilité des navigateurs

+ +

{{Compat("api.HTMLSelectElement.remove")}}

+ +

Voir aussi

+ + -- cgit v1.2.3-54-g00ecf