Advertisement
Guest User

Untitled

a guest
Jun 10th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>web-temper</title>
  5. <script src="/socket.io/socket.io.js"></script>
  6. <script src="http://code.jquery.com/jquery-1.11.1.js"></script>
  7. <script>
  8. var socket = io();
  9. socket.on('temperature', function(msg){
  10. $('#temper').text(msg);
  11. });
  12. </script>
  13. </head>
  14. <body>
  15. <h1 id='temper'>Hello world</h1>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement