Is there any plugin for IE, with I can use Websockets in IE 7-8-9? I haven't found any :(
相关问题
- How to fix IE ClearType + jQuery opacity problem i
- Netty websocket client does not read new frames fr
- Is TWebBrowser dependant on IE version?
- IE dropdown z-index bug
- Multiple cookies with same name
相关文章
- 关于SignalR的问题
- MVC 中如何连接websocket?
- websocket 每60s报WsHttpUpgradeHandler.timeoutAsync
- websocket定时报超时错误
- Call non-static methods on custom Unity Android Pl
- Observatory server failed to start - Fails to crea
- IE/Edge not applying transform: translate to table
- Number of Javascript lines executed during page lo
There is no native WS support until Internet Explorer 10. However, you might consider using a JavaScript library such as Socket.IO, which can be used for cross-browser WebSockets support.
I wrote a client socket script as said by @igorw which currently works in IE 9 (hopefully, IE 8 also) and other modern browsers!! (Checked in Chrome Version 33 and Firefox 27)
https://github.com/sk8terboi87/labs/tree/sockets
(Btw: server socket is done using php http://socketo.me)
(For explanation: http://codelikeapoem.com/2014/03/php-socket-programming-part-ii.html)
One of the fallbacks used by socket.io is the flash one: gimite/web-socket-js.
It uses flash to establish a socket connection. Because of this you can get WebSocket support on pretty much any legacy platform, since they all have flash.