Skip to content

Instantly share code, notes, and snippets.

@ToeJamson
Created June 19, 2013 20:25
Show Gist options
  • Save ToeJamson/5817708 to your computer and use it in GitHub Desktop.
Save ToeJamson/5817708 to your computer and use it in GitHub Desktop.
jQuery Push API
// jQuery.PUBNUB.subscribe( args, callback )
jQuery.PUBNUB.subscribe({
channel : 'my_channel'
}, function(message) {
// Show Message
console.log(message);
} );
// jQuery.PUBNUB.publish( args, callback )
jQuery.PUBNUB.publish( {
channel : 'my_channel',
message : { 'my_var' : 'some text data' }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment