Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8643555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T12:04:38+00:00 2026-06-12T12:04:38+00:00

I get the date/time value as below in JSON: ChangedDate:\/Date(1349469145000)\/ In FF and IE,

  • 0

I get the date/time value as below in JSON:

"ChangedDate":"\/Date(1349469145000)\/"

In FF and IE, I get the above date in 12 hr format (10/5/2012 – 3:32:25 PM) using the helper function below:

Handlebars.registerHelper('FormatDate', function (date) {
            if (date == null)
                return "";
            else {
                var value = new Date(parseInt(date.substr(6)));
                return value.getMonth() + 1 + "/" + value.getDate() + "/" + value.getFullYear() + " - " + value.toLocaleTimeString();
            }
        });

however, in Chrome I still get the 24 hr format (10/5/2012 – 15:32:25).

How do I get the date/time value in 12 hr format in Chrome?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T12:04:39+00:00Added an answer on June 12, 2026 at 12:04 pm

    Use toLocaleTimeString when the intent is to display to the user a
    string formatted using the regional format chosen by the user. Be
    aware that this method, due to its nature, behaves differently
    depending on the operating system and on the user’s settings.

    You may be better off changing this line:

    return value.getMonth() + 1 + "/" + value.getDate() + "/" + value.getFullYear() + " - " + value.toLocaleTimeString();
    

    to:

    return value.getMonth() + 1 + "/" + value.getDate() + "/" + value.getFullYear() + " - " + (value.getHours() > 12 ? value.getHours() - 12 : value.getHours()) + ":" + value.getMinutes() + ":" + value.getSeconds();
    

    Where we check to see if the hours are > 12 and if so we subtract 12 from that number.

    (value.getHours() > 12 ? value.getHours() - 12 : value.getHours())
    

    So your example 15:32:25 would be 15 - 12 = 3: 3:32:25.

    https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date/getSeconds

    https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date/getMinutes

    https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date/getHours

    EDIT

    //set up example
    var date = new Date("10/5/2012");
    date.setHours(15,32,25,00);
    
    //Get data from date
    var month = date.getMonth()+1;
    var day = date.getDate();
    var year = date.getFullYear();
    
    var hours = date.getHours();
    var amOrPm = "AM";
    if(date.getHours() > 12){
        hours = date.getHours() - 12;
        amOrPm = "PM";
    }
    
    var minutes = date.getMinutes();
    if(minutes  < 10)
        minutes = "0" + minutes;
    
    var seconds = date.getSeconds();
    if(seconds < 10)
        seconds = "0" + seconds;
    
    var dateString = month + "/" + day + "/" + year + " - " + hours + ":" + minutes + ":" + seconds;
    
    console.log(dateString);
    

    I made this example a bit more detailed than needed, but it helps to show you what’s going on. Hope it helps.

    EXAMPLE

    Condensed down this would look something like:

    //Get data from date
    var dateString = (date.getMonth()+1) + "/" + date.getDate() + "/" +  date.getFullYear() + " - " + (date.getHours() > 12 ? date.getHours() - 12 : date.getHours())+ ":" + (date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes()) + ":" + (date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds()) + " " + (date.getHours() > 12 ? "PM" : "AM");
    

    EXAMPLE

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Any one help to to get the extact value from the JavaScript date time
How do I get the system date and time in this format: $systime=12/january/2010 10.30
How to get date and time into one string ($moment) and if it works,
how get the date and time of the last modified particular TYPE file in
Question: I need to get the DATE ONLY (= date WITHOUT time) with an
I need to get real world date and time in Java. I use: Date
Does anyone know know how to programatically get the local date and time of
Looking for a way to get the seconds until @post.created_at date time with timezone.
below is my android code by which I need to get the timestamp value(value
I would like to get a current date time with erlang. I have tried

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.