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.

25 lines
682 B

4 years ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>jquery.rss accordion example</title>
  5. <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
  6. <script src="https://cdn.rawgit.com/timrwood/moment/1.7.2/min/moment.min.js"></script>
  7. <script src="../dist/jquery.rss.min.js"></script>
  8. <script>
  9. jQuery(function($) {
  10. $("#rss-feeds").rss("https://www.visitlakecounty.org/rss/visitlakecounty_boating_events.xml", {
  11. entryTemplate: '<li>[{date}] {title}</li>',
  12. dateFormat: "M/D/YY"
  13. })
  14. })
  15. </script>
  16. </head>
  17. <body>
  18. <div>
  19. <h1>jquery.rss example</h1>
  20. <div id="rss-feeds"></div>
  21. </div>
  22. </body>
  23. </html>