zRSSFeed - Redirecting RSS feed links to another page (Part 1)

This example redirects feed links to a specified page with the original link appended to the end.

Script

$(document).ready(function () {
	$('#test').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews', {
		limit: 5,
		linkredirect: 'example_link_redirect2.html?link='
	});
});

Result