Advertisement
Guest User

index.php

a guest
Jun 1st, 2014
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Playground</title>
  4. <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
  5. <script type="text/javascript">
  6. $(document).ready(function(){
  7. var value = 12;
  8. $('a').click(function(){
  9. $.ajax({
  10. url: "/handler.php",
  11. data: { key: value },
  12. type: "GET",
  13. beforeSend: function(xhr){xhr.setRequestHeader('Referer', 'lalala');},
  14. success: function(data) { alert('data: ' + data); }
  15. });
  16. });
  17. });
  18. </script>
  19. </head>
  20. <body>
  21. <a href="#">Click me!</a>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement