Skip to content

Instantly share code, notes, and snippets.

@iruslani
Created May 31, 2012 22:34
Show Gist options
  • Save iruslani/2846829 to your computer and use it in GitHub Desktop.
Save iruslani/2846829 to your computer and use it in GitHub Desktop.
Simple RSS Feed jquery
<html>
<head>
<script type="text/javascript" src="http://download.zonealarm.com/bin/promotions/pumpitup/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="http://www.zazar.net/developers/jquery/zrssfeed/jquery.zrssfeed.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function () {
$('#test').rssfeed('http://www.securelist.com/en/rss/descriptions', {
limit: 5
});
});
//http://www.securelist.com/en/rss/descriptions
</script>
</body>
</html>
<div id="threatlist" class="scrollingDiv">
<div id="test"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment