views:

795

answers:

2

I'm parsing an rss feed and each entry has a timestamp such as this: 2009-09-21T21:24:43+04:00 Is there any way to convert this date format to a unix timestamp with javascript?

I just want to be able to record the latest rss entry date, but I need to standardize the time to GMT time or Unix timestamp to do this.

A: 

The format appears to be ISO-8601. Assuming that is true, this blog provides a javascript solution to this.

TML
Apparently, that solution contains at least one bug, possibly two.
Robert L
+1  A: 

This question appears to be a duplicate of the one here, which I answered.

Robert L