how to Run Websocket in IE

html, javascript

Solution

IE Versions < 10 do not support Websockets, but you can use alternative techniques like flash or ajax-longpolling.

I recommend you to use a Framework so you don't have to take care of all the cross browser issues. A very good framework for this is socket.io

Edit 2017: this should probably not be an issue anymore, since websockets are now basically supported across the board.

Problem

I have a website where i am using websocket i have to run my website on IE also but IE does not support websocket is there any way to run the websocket on IE?

Original source