Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>This is a test index page</title>
  4. <script src="https://code.jquery.com/jquery-1.11.3.min.js" type="text/javascript"></script>
  5. </head>
  6. <body>
  7.  
  8. <h1>This is a test!!!</h1>
  9. <h3>I'm a little title</h3>
  10.  
  11. <a href="#" onclick="sendData()">Send Data</a>
  12.  
  13. <script>
  14. var obj = {"test":"a testing message"};
  15. function sendData(){
  16. $.post('/api/Users', obj, function(data){
  17. console.log(data);
  18. });
  19. }
  20. </script>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement