diff options
Diffstat (limited to 'files/fr/web/api/window/online_event')
-rw-r--r-- | files/fr/web/api/window/online_event/index.html | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/files/fr/web/api/window/online_event/index.html b/files/fr/web/api/window/online_event/index.html new file mode 100644 index 0000000000..0dd968c064 --- /dev/null +++ b/files/fr/web/api/window/online_event/index.html @@ -0,0 +1,79 @@ +--- +title: 'Window: online event' +slug: Web/API/Window/online_event +tags: + - API + - Evènement + - Online + - Reference + - Window +translation_of: Web/API/Window/online_event +--- +<div>{{APIRef}}</div> + +<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> + +<div class="note"><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.</div> + +<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> + +<dl> + <dt style="float: left; text-align: right; width: 120px;"></dt> +</dl> + +<h2 id="Exemples">Exemples</h2> + +<pre class="brush: js notranslate">// 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."); +}; +</pre> + +<h2 class="brush: js" id="Spécifications">Spécifications</h2> + +<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> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("api.Window.online_event")}}</p> + +<h2 id="Voir_également">Voir également</h2> + +<ul> + <li><a href="/en-US/docs/Web/API/Window/offline_event"><code>offline</code></a></li> +</ul> |