You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
682 B

4 years ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>jquery.rss accordion example</title>
  5. <link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
  6. <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
  7. <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
  8. <script src="../dist/jquery.rss.min.js"></script>
  9. <script>
  10. jQuery(function($) {
  11. $("#rss-feeds")
  12. .rss("http://www.ezypay.co.nz/feed", {
  13. limit: 15
  14. })
  15. })
  16. </script>
  17. </head>
  18. <body>
  19. <div>
  20. <h1>jquery.rss example</h1>
  21. <div id="rss-feeds"></div>
  22. </div>
  23. </body>
  24. </html>