- <script>
- $.getJSON("http://www.reddit.com/r/treecomics/.json?jsonp=?", function(data) {
- var items = data.data.children;
- $.each(data.data.children, function(i, item) {
- $("<br>", {
- }).appendTo($("#images"));
- $("<a/>", {
- href: item.data.url,
- text: item.data.title + " - (" + item.data.score + " points)"
- }).appendTo($("#images"));
- $("<br>", {
- }).appendTo($("#images"));
- });
- });
- </script>