HTML5 Server-Sent EventThe 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 serverThe 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:
Check browser support for Server-sent EventFirst 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 NowSending 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:
Complete Example:Example:Test it NowNote: 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:
Next TopicHTML Color Names |