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.
$(document).ready(function () { $('#test').rssfeed('http://www.zazar.net/blog/rss.xml', { limit: 5, offset: 3 }); });