a ws server and a ws client

master
Gunstick 2013-09-02 20:59:31 +02:00
parent 4a2921bd08
commit 740f3bd1fa
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Web socket test</title>
<script type="text/javascript">
var ws = new WebSocket('ws://localhost:1234', 'echo-protocol');
ws.addEventListener("message", function(e) {
// The data is simply the message that we're sending back
var msg = e.data;
// Append the message
document.getElementById('chatlog').innerHTML = '<pre>' + msg + '</pre>';
});
</script>
</head>
<body>
<div>Received from server:</div>
<div id='chatlog'></div>
</body>
</html>