aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/online_event/index.md
blob: ff177370579d6b00447806e588aa3fcae4eaf570 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
title: 'Window: online event'
slug: Web/API/Window/online_event
tags:
  - API
  - Evènement
  - Online
  - Reference
  - Window
translation_of: Web/API/Window/online_event
---
{{APIRef}}

L'événement **`online`** de l'interface {{domxref("Window")}} est déclenché lorsque le navigateur a obtenu l'accès au réseau et que la valeur de {{domxref("Navigator.onLine")}} passe à `true`.

> **Note :** Cet événement ne doit pas être utilisé pour déterminer la disponibilité d'un site Web particulier. Des problèmes de réseau ou des pare-feu peuvent encore empêcher l'accès au site Web.

<table class="properties">
  <tbody>
    <tr>
      <th scope="row">Bulles</th>
      <td>No</td>
    </tr>
    <tr>
      <th scope="row">Annulable</th>
      <td>No</td>
    </tr>
    <tr>
      <th scope="row">Interface</th>
      <td>{{domxref("Event")}}</td>
    </tr>
    <tr>
      <th scope="row">Propriété de gestionnaire d'événements</th>
      <td>
        {{domxref("GlobalEventHandlers.ononline", "ononline")}}
      </td>
    </tr>
  </tbody>
</table>

## Exemples

```js
// addEventListener version
window.addEventListener('online', (event) => {
    console.log("Vous êtes maintenant connecté au réseau.");
});

// ononline version
window.ononline = (event) => {
  console.log("Vous êtes maintenant connecté au réseau.");
};
```

## Spécifications

| Spécification                                                                                    | Statut                           |
| ------------------------------------------------------------------------------------------------ | -------------------------------- |
| {{SpecName('HTML WHATWG', "indices.html#event-online", "online event")}} | {{Spec2('HTML WHATWG')}} |

## Compatibilité des navigateurs

{{Compat("api.Window.online_event")}}

## Voir également

- [`offline`](/en-US/docs/Web/API/Window/offline_event)