HTML5 Server-Sent Event

The HTML5 server-sent event enables a browser to receive automatic updates and data from a server via HTTP connections.

What are the Server-Sent Events?

Whenever we perform some event and send it to the server such as by submitting the form to the server. So such type of event which flows from web browser to web-server are called as a client-side events. But if the server sent some updates or information to the browser, then such events are called server-sent events. Hence A server sent event occurs when the browser automatically updated from the Server.

The Server-sent events are mono-directional (always come from server to client). Or it may be called as one-way messaging.

Receiving events from the server

The Server sent event uses the EventSource object to receive events from the server. It specifies the URI of the script which generates the events.

Example:

Code Explanation:

  • First, create the new EventSource object, and define the URI of the page which sends server updates. Here we have taken ServerUpdate.php for sending the updates to the web browser.
  • Each time when an update occurs from the server, then the onmessage event occurs and print the message on the web page.
  • The occurred message can be displayed on div using id "output".

Check browser support for Server-sent Event

First we need to check the browser support for server-sent event. So to check the browser support for Server-sent event we will check the EventSource object is true or not. If it is true then it will give alert for supporting else it will give alert for not supporting.

Example:

Test it Now

Sending events from the server:

To work with server-sent, we need a server which can send data updates to the web browser. For this, we need to create a file in ASP, PHP or any dynamic language.

Following is the example to show the server updates:

ServerUpdate.php:

Example:

Code Explanation:

  • In the first line of the code, we have set the "Content-type" header to "text/event-stream". It is required for server-side event standard.
  • The second line informs the server to turn off the caching else the server updates may be cached.
  • echo "data: The Current Server time is: {$time}\n\n"; It creates the output of data to send, and it must always start with data: .
  • Then, we have used the flush () method, which makes sure that data is sent right away to the web page.

Complete Example:

Example:

Test it Now

Note: To execute the above code on your browser, you need a server installed on your system, and then run this on localhost. You can install any server such as MYSQL, XAMPP, etc.

Browser Support:

API chrome browser Chrome ie browser IE firefox browser Firefox opera browser Opera safari browser Safari
SSE 6.0 Not Supported 6.0 11.5 5.0
Next TopicHTML Color Names




Contact US

Email:[email protected]

HTML SS Event
10/30