Skip to content

Instantly share code, notes, and snippets.

@dkolba
dkolba / chat-frontend.js
Created August 2, 2012 21:47 — forked from martinsik/chat-frontend.js
Node.js chat frontend and server
$(function () {
"use strict";
// for better performance - to avoid searching in DOM
var content = $('#content');
var input = $('#input');
var status = $('#status');
// my color assigned by the server
var myColor = false;