Example showing to format feed dates using the 'dateformat' option.
$(document).ready(function () { $('#test1').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews',{ limit: 3, dateformat: 'datetime' }); $('#test2').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews',{ limit: 3, dateformat: 'timeline' }); $('#test3').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews',{ limit: 3, dateformat: 'dd/MM/yyyy hh:mm:ss' }); });