jquery-rss
jquery-rss copied to clipboard
Event - Start Date
I'm trying to pull through the event start date and not the published date. The two fields are;
<published>2019-01-10T10:10:41+00:00</published>
<ev:startdate>2019-01-14T11:28:00+00:00</ev:startdate>
In the jquery.rss.js file, I've found;
date: this.getFormattedDate(entry.publishedDate),
and tried to alter it;
date: this.getFormattedDate(entry.startDate),
But when I try and alter it, it breaks...
What's the feed you try to parse?