Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

From the server I get a datetime variable in this format: 6/29/2011 4:52:48 PM and it is in UTC time. I want to convert it to the current user's browser time using JavaScript.

How this can be done using JavaScript or jQuery?

share|improve this question

4 Answers

up vote 26 down vote accepted

Append 'UTC' to the string before converting it to a date in javascript:

var date = new Date('6/29/2011 4:52:48 PM UTC');
date.toString() // "Wed Jun 29 2011 09:52:48 GMT-0700 (PDT)"
share|improve this answer
function localizeDateStr (date_to_convert_str) { var date_to_convert = new Date(date_to_convert_str); var local_date = new Date(); date_to_convert.setHours(date_to_convert.getHours()+local_date.getTimezoneOffset‌​()); return date_to_convert.toString(); } – matt Oct 9 '12 at 17:08
@matt offSet returns minutes, not hours, you need to divide by 60 – bladefist May 18 at 16:13

Put this function in your head:

<script type="text/javascript">
function localize(t)
{
  var d=new Date(t+" UTC");
  document.write(d.toString());
}
</script>

Then generate the following for each date in the body of your page:

<script type="text/javascript">localize("6/29/2011 4:52:48 PM");</script>

To remove the GMT and time zone, change the following line:

document.write(d.toString().replace(/GMT.*/g,""));
share|improve this answer
localize("6/29/2011 4:52:48"); it is not working in FireFox as i am using 24 hrs format – BrainCoder Nov 27 '12 at 12:53

You should get the (UTC) offset (in minutes) of the client:

var offset = new Date().getTimezoneOffset();

And then do the correspondent adding or substraction to the time you get from the server.

Hope this helps.

share|improve this answer

Here is the working solution

<script type="text/javascript">
    var utcdate = new Date();
    utcdate.setDate(parseInt('<%= DateTime.UtcNow.Day %>'));
    utcdate.setFullYear(parseInt('<%= DateTime.UtcNow.Year %>'));
    utcdate.setMonth(parseInt('<%= DateTime.UtcNow.Month-1 %>'));
    utcdate.setHours(parseInt('<%= DateTime.UtcNow.Hour %>'));
    utcdate.setMinutes(parseInt('<%= DateTime.UtcNow.Minute %>'));
    utcdate.setSeconds(parseInt('<%= DateTime.UtcNow.Second %>'));
    utcdate.setMilliseconds(parseInt('<%= DateTime.UtcNow.Millisecond %>'));
    document.write(utcdate.toLocaleString());
</script>
share|improve this answer
2  
question was abt parsing UTC time in javascript – ZafarYousafi Nov 23 '12 at 12:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.