modifié: test.html

This commit is contained in:
sidya82 2014-02-27 21:43:37 +01:00
parent 24d9058d29
commit 8f8ca84f42
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
function WebSocketTest() {
if ("WebSocket" in window) {
messageContainer.innerHTML = "WebSocket is supported by your Browser!";
var ws = new WebSocket("ws://192.168.1.23:80/?Id=123456789");
var ws = new WebSocket("ws://192.168.1.23:80/test/?Id=123456789");
ws.onopen = function() {
ws.send("Message to send");
};