Skip to content

Instantly share code, notes, and snippets.

@bcamarda
Created June 21, 2012 06:20
Show Gist options
  • Save bcamarda/2964186 to your computer and use it in GitHub Desktop.
Save bcamarda/2964186 to your computer and use it in GitHub Desktop.
JS Chat
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>untitled</title>
<meta name="generator" content="TextMate http://macromates.com/">
<meta name="author" content="Apprentice">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://codeclasschat.herokuapp.com/helpers.js"></script>
<!-- Date: 2012-06-20 -->
</head>
<body>
<script>
jQuery(document).ready(function(){
helpers.sendMessage("we're in business")
setInterval(function(){
helpers.fetchNewMessages(function(messages){
$.each(messages, function(i, message){
helpers.renderMessage(message);
});
});
});
}, 2000);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment