blob: 44b9be5821ab8d3538b15ed286df886428c87f4a (
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
|
---
title: EventSource.onopen
slug: Web/API/EventSource/open_event
tags:
- API
- Event Handler
- EventSource
- Propriété
- Reference
translation_of: Web/API/EventSource/onopen
original_slug: Web/API/EventSource/onopen
---
{{APIRef('Server Sent Events')}}
La propriété **`onopen`** de l'interface {{domxref("EventSource")}} est un {{event("Event_handlers", "event handler")}} qui est appelé lorsqu'un est évènement {{event("open")}} est reçu, indiquant que la connexion vient d'être établie.
## Syntaxe
eventSource.onopen = function
## Exemples
```js
evtSource.onopen = function() {
console.log("Connexion au serveur établie.");
};
```
> **Note :** Vous pouvez trouver un exemple complet sur GitHub — voir [Simple SSE demo using PHP.](https://github.com/mdn/dom-examples/tree/master/server-sent-events)
## Spécifications
| Spécification | Statut | Commentaires |
| -------------------------------------------------------------------------------------------------------- | -------------------------------- | -------------------- |
| {{SpecName('HTML WHATWG', "comms.html#handler-eventsource-onopen", "onopen")}} | {{Spec2('HTML WHATWG')}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("api.EventSource.onopen")}}
## Voir aussi
- {{domxref("EventSource")}}
|