Skip to content

Instantly share code, notes, and snippets.

@JoshvaR88
Forked from stephenlb/1.html
Created September 1, 2014 10:09
Show Gist options
  • Save JoshvaR88/0fd72e3398a6d5b22df6 to your computer and use it in GitHub Desktop.
Save JoshvaR88/0fd72e3398a6d5b22df6 to your computer and use it in GitHub Desktop.
Enter Chat and press enter
<div><input id=input placeholder=you-chat-here /></div>
Chat Output
<div id=box></div>
<script src=http://cdn.pubnub.com/pubnub.min.js></script>
<script>(function(){
var box = PUBNUB.$('box'), input = PUBNUB.$('input'), channel = 'chat';
PUBNUB.subscribe({
channel : channel,
callback : function(text) { box.innerHTML = (''+text).replace( /[<>]/g, '' ) + '<br>' + box.innerHTML }
});
PUBNUB.bind( 'keyup', input, function(e) {
(e.keyCode || e.charCode) === 13 && PUBNUB.publish({
channel : channel, message : input.value, x : (input.value='')
})
} )
})()</script>
// Send a message
PUBNUB.publish({ channel : 'chat', message : "hello!" })
// Receive messages
PUBNUB.subscribe({ channel : 'chat', message : fun })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment