Advertisement
BrU32

Untitled

May 14th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
  2. <script>
  3. $(document).ready(function(){
  4. $("button").click(function(){
  5. $.post("tryit.asp", function(requestData,e){
  6. document.writeln(requestData);
  7. });
  8. });
  9. });
  10. </script>
  11. </head>
  12. <body>
  13. <button>POST Request</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement