blob: 233ee69d003b098582de7192e9170c0a3d685b17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html>
<head>
<script type="text/javascript">
function init(){
var webSocket = new WebSocket("ws://localhost:8001/foo/bar");
}
</script>
</head>
<body onload="init();">
</body>
</html>
|