|
|
- <!DOCTYPE html>
- <html>
- <head>
- <title>jquery.rss accordion example</title>
-
- <link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
-
- <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
- <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
- <script src="../dist/jquery.rss.min.js"></script>
-
- <script>
- jQuery(function($) {
- $("#rss-feeds")
- .rss("http://www.ezypay.co.nz/feed", {
- limit: 15
- })
- })
- </script>
- </head>
- <body>
- <div>
- <h1>jquery.rss example</h1>
- <div id="rss-feeds"></div>
- </div>
- </body>
- </html>
|