The EventSource
interface is used to receive server-sent events. It connects to a server over HTTP and receives events in text/event-stream
format without closing the connection.
EventSource()
EventSource
from the given USVString
.This interface also inherits properties from its parent, EventTarget
.
EventSource.onerror
EventHandler
being called when an error occurs and the error
event is dispatched on this object.EventSource.onmessage
EventHandler
being called when a message
event is received, that is when a message is coming from the source.EventSource.onopen
EventHandler
being called when an open
event is received, that is when the connection was just opened.EventSource.readyState
Read only
unsigned short
representing the state of the connection. Possible values are CONNECTING
(0
), OPEN
(1
), or CLOSED
(2
).EventSource.url
Read only
DOMString
representing the URL of the source.This interface also inherits methods from its parent, EventTarget
.
EventSource.close()
readyState
attribute to CLOSED
. If the connection is already closed, the method does nothing.Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'EventSource' in that specification. | Living Standard |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 9 | 6.0 (6.0) | ? | 11 | 5 |
CORS support | 26 | 11.0 (11.0) | ? | 12 | ? |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 4.4 | ? | ? | ? | ? |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/EventSource