Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>NodeServer: strona testowa</title>
  4. <script>
  5.  
  6. </script>
  7. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  8. <script>
  9.  
  10. $(document).ready(function(){
  11.  
  12. $("input").keyup(function(){
  13. var txt = $("input").val();
  14.  
  15. $.post("http://150.254.76.84:3001",{message:txt, funkcja: "test"} ,function(result){
  16. $("div").html("Serwer 1: " + result);
  17. }, "text");
  18. });
  19.  
  20. });
  21. </script>
  22. </head>
  23.  
  24. <body>
  25. <p>Wpisz coÅ› ;)</p>
  26. <input type="text" name="tekst"/>
  27. <div></div>
  28. <span></span>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement