Skip to content

Instantly share code, notes, and snippets.

@maxchehab
Created September 5, 2015 05:40
Show Gist options
  • Save maxchehab/112bbad99d802e5749ab to your computer and use it in GitHub Desktop.
Save maxchehab/112bbad99d802e5749ab to your computer and use it in GitHub Desktop.
<!-- save as index.html -->
<html>
<head>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
</head>
<body>
<script>
var socket = io.connect('http://localhost');
socket.on('field', function (data) {
console.log(data);
$("#field").html(data);
});
</script>
Data: <div id="field"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment