Advertisement
Guest User

Untitled

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