Advertisement
Guest User

Untitled

a guest
Jan 8th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <script>
  2. $(function(){
  3. $('#submitlink').click(function(){
  4. $.ajax({
  5. type: "POST",
  6. url: "test.php",
  7. data: $("#myform").serialize(),
  8. beforeSend: function(){
  9. $('#result').html("<img src='loading.gif' />")
  10. }
  11. success: function(data){
  12. $('#result').html(data);
  13. }
  14. });
  15. });
  16. })
  17. </script>
  18.  
  19. <?php
  20. if(bedingung){
  21. //Hier soll dann mein Knopf eingeblendet werden
  22. echo '<form action="" method="post" onsubmit="return: false;" id="myform"> <a href="#" id="submitlink">Load more!</a><div id="result"></div></form>';
  23. }
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement