1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
$(document).ready(function() { var ws = new WebSocket('ws://' + document.location.host + ':1236'); ws.onopen = function() { }; ws.onclose = function() { }; ws.onmessage = function(evt) { }; ws.onerror = function(evt) { }; });