Skip to content

Instantly share code, notes, and snippets.

@gitssk
Created October 30, 2012 09:09
Show Gist options
  • Save gitssk/3979157 to your computer and use it in GitHub Desktop.
Save gitssk/3979157 to your computer and use it in GitHub Desktop.
html with websocket call
<script>
function start() {
var connection = new WebSocket('ws://localhost:8888/websocket');
connection.onopen = function () {
alert('open');
};
}
</script>
<html>
<body onload="javascript:start();">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment