<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: JavaScript Date Format</title>
	<atom:link href="http://blog.stevenlevithan.com/archives/date-time-format/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.stevenlevithan.com/archives/date-time-format</link>
	<description>A JavaScript and regular expression centric blog</description>
	<lastBuildDate>Thu, 02 Feb 2012 02:09:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Fred</title>
		<link>http://blog.stevenlevithan.com/archives/date-time-format/comment-page-5#comment-182211</link>
		<dc:creator>Fred</dc:creator>
		<pubDate>Fri, 27 Jan 2012 19:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/javascript/date-format/#comment-182211</guid>
		<description>Strange, milliseconds (l and L) work in Firefox and Chrome, but not in IE (9).

dateFormat(new Date(), &quot;yyyy/mm/dd hh:MM:ss L l&quot;) + &quot; getMilliseconds(): &quot; + new Date().getMilliseconds();

result:
2012/01/27 02:52:33 00 000 getMilliseconds(): 545

both l and L always return 0</description>
		<content:encoded><![CDATA[<p>Strange, milliseconds (l and L) work in Firefox and Chrome, but not in IE (9).</p>
<p>dateFormat(new Date(), &#8220;yyyy/mm/dd hh:MM:ss L l&#8221;) + &#8221; getMilliseconds(): &#8221; + new Date().getMilliseconds();</p>
<p>result:<br />
2012/01/27 02:52:33 00 000 getMilliseconds(): 545</p>
<p>both l and L always return 0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tasos</title>
		<link>http://blog.stevenlevithan.com/archives/date-time-format/comment-page-5#comment-181782</link>
		<dc:creator>Tasos</dc:creator>
		<pubDate>Thu, 26 Jan 2012 12:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/javascript/date-format/#comment-181782</guid>
		<description>Hello there, 

Thank you for your script! It really helped me today :-)

I am putting it in my default script list for my projects!</description>
		<content:encoded><![CDATA[<p>Hello there, </p>
<p>Thank you for your script! It really helped me today <img src='http://blog.stevenlevithan.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I am putting it in my default script list for my projects!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gordon</title>
		<link>http://blog.stevenlevithan.com/archives/date-time-format/comment-page-5#comment-174181</link>
		<dc:creator>Gordon</dc:creator>
		<pubDate>Fri, 06 Jan 2012 03:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/javascript/date-format/#comment-174181</guid>
		<description>The isoDate doesn&#039;t seem to be consistent.
If I write as follow,
  var date = new Date();
  date.format(&quot;isoDate&quot;,true);

It prints the date of yesterday(not today).</description>
		<content:encoded><![CDATA[<p>The isoDate doesn&#8217;t seem to be consistent.<br />
If I write as follow,<br />
  var date = new Date();<br />
  date.format(&#8220;isoDate&#8221;,true);</p>
<p>It prints the date of yesterday(not today).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SnowSky</title>
		<link>http://blog.stevenlevithan.com/archives/date-time-format/comment-page-5#comment-166729</link>
		<dc:creator>SnowSky</dc:creator>
		<pubDate>Thu, 22 Dec 2011 07:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/javascript/date-format/#comment-166729</guid>
		<description>@Steve:
You are the hero of the Day,
thank you very much for your work!
If you&#039;d know of how much time and problems you saved me :)

I didn&#039;t think it would be such a pain in the a$$ getting a formated UTC Output in JS, but now it is no problem anymore :)

greets from Italy
-SnowSky</description>
		<content:encoded><![CDATA[<p>@Steve:<br />
You are the hero of the Day,<br />
thank you very much for your work!<br />
If you&#8217;d know of how much time and problems you saved me <img src='http://blog.stevenlevithan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I didn&#8217;t think it would be such a pain in the a$$ getting a formated UTC Output in JS, but now it is no problem anymore <img src='http://blog.stevenlevithan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>greets from Italy<br />
-SnowSky</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ram</title>
		<link>http://blog.stevenlevithan.com/archives/date-time-format/comment-page-5#comment-164388</link>
		<dc:creator>ram</dc:creator>
		<pubDate>Fri, 16 Dec 2011 20:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/javascript/date-format/#comment-164388</guid>
		<description>Steve
If my input string is &quot;19/1/2010&quot; as in European format, it does not give me the desired result. The 19 is converted to the month 7 and the date is parsed as 7/1/2010. Any suggestions?</description>
		<content:encoded><![CDATA[<p>Steve<br />
If my input string is &#8220;19/1/2010&#8243; as in European format, it does not give me the desired result. The 19 is converted to the month 7 and the date is parsed as 7/1/2010. Any suggestions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

