adamazza

Client

May 17th, 2016
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <section id="affichage">
  5.            
  6.         </section>
  7.  
  8.         <script src="/socket.io/socket.io.js"></script>
  9.         <script>
  10.         var socket = io.connect('http://localhost:8080');
  11.         socket.on('message', function(message) {
  12.                 $('#affichage').prepend('<p><em>'+message+'</em></p>');
  13.             })
  14.  
  15. </script>
  16. <form method="POST" action="http://localhost:8080">
  17. <input type="submit" name="ON" value="ON" >
  18. </form>
  19.  
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment