diff --git a/websockets-quickstart/src/main/resources/META-INF/resources/index.html b/websockets-quickstart/src/main/resources/META-INF/resources/index.html index 69f10e65e2..fb0fb8fc77 100644 --- a/websockets-quickstart/src/main/resources/META-INF/resources/index.html +++ b/websockets-quickstart/src/main/resources/META-INF/resources/index.html @@ -82,6 +82,7 @@ socket.onopen = function() { connected = true; console.log("Connected to the web socket"); + socket.send("_ready_"); $("#send").attr("disabled", false); $("#connect").attr("disabled", true); $("#name").attr("disabled", true);