Guest User

Untitled

a guest
Jul 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <table>
  2. <tr>
  3. <th>Name</th>
  4.  
  5. </tr>
  6. {{#each friends}}
  7. <tr>
  8. <td><a href="/chat?name={{this.profileName}}">{{this.profileName}}</a></td>
  9.  
  10. </tr>
  11. {{/each}}
  12. </table>
  13.  
  14. socket.join(chatTable);//joining a room ! where problem rises
  15.  
  16. io.sockets.in(chatTable).emit('db chat message',rows);
  17.  
  18. <form action="">
  19. <input id="m" autocomplete="off" /><button>Send</button>
  20. </form>
  21.  
  22. $('form').submit(function(){
  23.  
  24. socket.emit('chat message', $('#m').val());
  25. $('#m').val()='';
  26. return false;
  27. });
Add Comment
Please, Sign In to add comment