Skip to content

Instantly share code, notes, and snippets.

@tpdn
Created January 28, 2014 19:16
Show Gist options
  • Save tpdn/8674232 to your computer and use it in GitHub Desktop.
Save tpdn/8674232 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var ws = new WebSocket("ws://localhost:8080/websocket");
ws.onopen = function() {
ws.send("Hello, world");
};
ws.onmessage = function (evt) {
alert(evt.data);
};
</script>
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment