Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

155
Views
JS Always show UK timezone

I'd like the timestamp on this div to always show UK time regardless of where you are in the world. Currently it will show based on the user/browser location even though i've added the below to ensure UK time is visible.

function showDateTime() {
  var myDiv = document.getElementById("time");
  var event = new Date();
console.log(event.toLocaleString('en-GB', { timeZone: 'Europe/London' }));

I've shared this with some friends in the US and the time is showing local to them rather than the UK/time.

https://jsfiddle.net/xgwsk2b3/

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

With Intl API https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl

https://jsfiddle.net/danailvidev/vmo6cyh2/1/

function showDateTime() {
  var date = new Date();
  var formatter = new Intl.DateTimeFormat('en-GB', {
      dateStyle: 'full',
      timeStyle: 'long',
    });
    console.log(formatter.format(date));
}
setInterval(showDateTime, 1000);


// "Thursday, 6 January 2022 at 12:00:24 GMT"
about 4 years ago · Juan Pablo Isaza Report

0

UTC solves your problem:

  • https://www.google.com/search?q=uk+utc+time
  • https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC

I live in Germany and UTC+1 is my timezone, for the UK you need UTC+0

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!