Skip to content

Instantly share code, notes, and snippets.

@dchrzanowski
dchrzanowski / index.html
Created July 21, 2017 13:59 — forked from rukeba/index.html
Very simple example chat on Node.js
<html>
<head>
<title>Node.js Zoo Chat</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('form#send').submit(onSend);
longPoll();
$('#nickname').focus();
});