Skip to content

Instantly share code, notes, and snippets.

@ianchanning
Forked from scripting/RiverReader
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ianchanning/826e3795e8e9edfdf471 to your computer and use it in GitHub Desktop.
Save ianchanning/826e3795e8e9edfdf471 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Minimal River Reader</title>
<script src="http://fargo.io/code/jquery-1.9.1.min.js"></script>
</head>
<body>
<script>
var theRiver;
function onGetRiverStream (updatedFeeds) {
theRiver = updatedFeeds;
}
$.ajax ({
url: "http://rss.scripting.com/rivers/nytRiver.js",
dataType: "jsonp"
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment