forked from sdepold/jquery-rss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathezypay.html
34 lines (30 loc) · 786 Bytes
/
ezypay.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!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="../src/jquery.rss.js"></script>
<script>
jQuery(function($) {
$("#rss-feeds")
.rss("http://www.ezypay.co.nz/feed", {
outputMode: 'json_xml',
limit: 15
})
})
</script>
<style>
body {
font-size: 62.5%;
}
</style>
</head>
<body>
<div>
<h1>jquery.rss example</h1>
<div id="rss-feeds"></div>
</div>
</body>
</html>