Closed sendtopms closed 14 years ago
This is the code for checking websocket support
<script> var ws_support = false; try{ new WebSocket("ws://test:80"); ws_support = true; } catch (e){ } alert (ws_support); </script>
There is already a test for WebSocket at beta.html5test.com
Good. I did not see the beta.html5.
This is the code for checking websocket support