aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/websocket/onopen/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/websocket/onopen/index.html')
-rw-r--r--files/fr/web/api/websocket/onopen/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/files/fr/web/api/websocket/onopen/index.html b/files/fr/web/api/websocket/onopen/index.html
new file mode 100644
index 0000000000..488b3eb0be
--- /dev/null
+++ b/files/fr/web/api/websocket/onopen/index.html
@@ -0,0 +1,27 @@
+---
+title: WebSocket.onopen
+slug: Web/API/WebSocket/onopen
+browser-compat: api.WebSocket.onopen
+---
+<div>{{APIRef("Web Sockets API")}}</div>
+
+<p>La propriété <strong><code>WebSocket.onopen</code></strong> est un <a href="/fr/docs/Web/Events/Event_handlers">gestionnaire d'évènement</a> qui est appelé lorsque l'état (<a href="/fr/docs/Web/API/WebSocket/readyState"><code>readyState</code></a>) de la connexion <a href="/fr/docs/Web/API/WebSocket"><code>WebSocket</code></a> passe à <code>1</code>, indiquant que la connexion est prête pour l'envoi et la réception de données. Lorsqu'il est appelé, ce gestionnaire d'évènement reçoit un objet <a href="/fr/docs/Web/API/Event"><code>Event</code></a> en paramètre.</p>
+
+<h2 id="syntax">Syntaxe</h2>
+
+<pre class="brush: js">
+uneWebSocket.onopen = function(event) {
+ console.log("La WebSocket est désormais ouverte.");
+};</pre>
+
+<h2 id="value">Valeur</h2>
+
+<p>Un objet <a href="/fr/docs/Web/API/EventListener"><code>EventListener</code></a>.</p>
+
+<h2 id="specifications">Spécifications</h2>
+
+<p>{{Specifications}}</p>
+
+<h2 id="browser_compatibility">Compatibilité des navigateurs</h2>
+
+<p>{{Compat}}</p>