diff options
Diffstat (limited to 'files/fr/web/api/window/blur/index.md')
-rw-r--r-- | files/fr/web/api/window/blur/index.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/fr/web/api/window/blur/index.md b/files/fr/web/api/window/blur/index.md new file mode 100644 index 0000000000..75091cf2a6 --- /dev/null +++ b/files/fr/web/api/window/blur/index.md @@ -0,0 +1,46 @@ +--- +title: Window.blur() +slug: Web/API/Window/blur +tags: + - API + - DOM + - Gecko + - Méthode +translation_of: Web/API/Window/blur +--- +<p>{{APIRef}}</p> + +<p>Éloigne la mise au point de la fenêtre.</p> + +<h2 id="Syntax">Syntaxe</h2> + +<pre class="syntaxbox"><code>window.blur()</code></pre> + +<h2 id="Example">Exemple</h2> + +<pre class="brush:js">window.blur();</pre> + +<h2 id="Notes">Notes</h2> + +<p>La méthode <code>window.blur()</code> est l'équivalent programmatique du déplacement du focus de l'utilisateur loin de la fenêtre courante.</p> + +<h2 id="Specification">Spécification</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statut</th> + <th scope="col">Commentair</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG','interaction.html#dom-window-blur','Window.blur()')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("api.Window.blur")}}</p> |