diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/window/online_event | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/window/online_event')
-rw-r--r-- | files/fr/web/api/window/online_event/index.md | 84 |
1 files changed, 37 insertions, 47 deletions
diff --git a/files/fr/web/api/window/online_event/index.md b/files/fr/web/api/window/online_event/index.md index c2c93916c8..ff17737057 100644 --- a/files/fr/web/api/window/online_event/index.md +++ b/files/fr/web/api/window/online_event/index.md @@ -9,69 +9,59 @@ tags: - Window translation_of: Web/API/Window/online_event --- -<div>{{APIRef}}</div> +{{APIRef}} -<p>L'événement <strong><code>online</code></strong> 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 à <code>true</code>.</p> +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`. -<div class="note"> - <p><strong>Note :</strong> 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.</p> -</div> +> **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> + <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> -<h2 id="Exemples">Exemples</h2> +## Exemples -<pre class="brush: js">// addEventListener version -window.addEventListener('online', (event) => { +```js +// addEventListener version +window.addEventListener('online', (event) => { console.log("Vous êtes maintenant connecté au réseau."); }); // ononline version -window.ononline = (event) => { +window.ononline = (event) => { console.log("Vous êtes maintenant connecté au réseau."); }; -</pre> +``` -<h2 id="Spécifications">Spécifications</h2> +## Spécifications -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Statut</th> - </tr> - <tr> - <td>{{SpecName('HTML WHATWG', "indices.html#event-online", "online event")}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - </tr> - </tbody> -</table> +| Spécification | Statut | +| ------------------------------------------------------------------------------------------------ | -------------------------------- | +| {{SpecName('HTML WHATWG', "indices.html#event-online", "online event")}} | {{Spec2('HTML WHATWG')}} | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("api.Window.online_event")}}</p> +{{Compat("api.Window.online_event")}} -<h2 id="Voir_également">Voir également</h2> +## Voir également -<ul> - <li><a href="/en-US/docs/Web/API/Window/offline_event"><code>offline</code></a></li> -</ul> +- [`offline`](/en-US/docs/Web/API/Window/offline_event) |