blob: 1d9985483e9f392d1f6f05e5d1f4505af2d0c534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
---
title: Window.home()
slug: Web/API/Window/home
tags:
- API
- Gecko
- HTML DOM
- Méthode
- Obsolete
- Reference
- Window
translation_of: Web/API/Window/home
---
<div>{{APIRef}}{{ Non-standard_header() }} {{ obsolete_header(31) }}</div>
<p>La méthode <code><strong>Window.home()</strong></code> renvoie la fenêtre à la page d'accueil.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox notranslate"><em>window</em>.home();
</pre>
<h2 id="Exemple">Exemple</h2>
<pre class="brush: js notranslate">function goHome() {
window.home();
}
</pre>
<h2 id="Spécification">Spécification</h2>
<p>DOM Niveau 0. Ne fait pas partie de la spécification.</p>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Window.home")}}</p>
|