Guest User

Untitled

a guest
Apr 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <head>
  2. <script src="jquery.js" type="text/javascript"></script>
  3. </head>
  4.  
  5. <script>
  6. function test(result)
  7. {
  8. $.ajax({
  9. type:'POST',
  10. url:'test.php',
  11. data:{sort:id},
  12. success:function(data){
  13. $('#res').html(data)
  14. }
  15. })
  16. }
  17. </script>
  18.  
  19. <a href="#" onclick="test('text')">link</a>
  20. <div id="res">
  21. <?php
  22. if (isset($_POST['result'])) {
  23. echo $_POST['result'];
  24. ?>
  25. </div>
Add Comment
Please, Sign In to add comment