zRSSFeed - Starting a feed at a specific item

This example displays feed items from a defined starting point using the 'offset' option. By using the 'offset' and 'limit' options, large feed results can be paged.

Script

$(document).ready(function () {
	$('#test').rssfeed('http://www.zazar.net/blog/rss.xml', {
		limit: 5,
		offset: 3
	});
});

Result