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: 'date'
});
$('#test3').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews',{
limit: 3,
dateformat: 'time'
});
$('#test4').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews',{
limit: 3,
dateformat: 'timeline'
});
$('#test5').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews',{
limit: 3,
dateformat: 'dd/MM/yyyy hh:mm:ss'
});
$('#test6').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews',{
limit: 3,
dateformat: 'MMMM yyyy'
});
});