Advertisement
Guest User

Untitled

a guest
May 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Ajax Example</title>
  4. </head>
  5. <body>
  6. <section>
  7. <h1>Recent Posts</h1>
  8. <article>
  9. <h2>Post 1</h2>
  10. <p>This is post 1.</p>
  11. </article>
  12. <article>
  13. <h2>Post 2</h2>
  14. <p>This is post 2.</p>
  15. </article>
  16. <article>
  17. <h2>Post 3</h2>
  18. <p>This is post 3.</p>
  19. </article>
  20. <button id="load-more-posts">Load more posts</button>
  21. </section>
  22. <script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
  23. <script>
  24. $(function(){
  25. var button = $('#load-more-posts');
  26. button.one('click', function(){
  27. $.ajax({
  28. url: 'more-posts.html',
  29. method: 'GET',
  30. success: function(morePostsHtml){
  31. button.replaceWith(morePostsHtml);
  32. }
  33. });
  34. });
  35. });
  36. </script>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement