I am using HTML5 Server-Sent Events as follows:
SSEUpdate = new EventSource(\"http://example.com/update.php\");
SSEUpdate.onmessage = function(e){
In a word, no.
Microsoft has not included SSE or an equivalent of SSE in any version of IE. IMO, you have two good options:
if ("EventSource" in global) return;
, it'll only run in browsers that do not support EventSource
.ws://
protocol), it works in IE10 and 11 and provides more options such as bi-directional communication.SSE native support for IE is not there. You can achieve same thing using polyfill