chat.client.broadcastMessage = function (name, message) { // Html encode display name and message. var encodedName = $('
').text(name).html(); var encodedMsg = $('
').text(message).html(); // Add the message to the page. $('#discussion').append('
  • ' + encodedName + ':  ' + encodedMsg + '
  • '); };