Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

159
Visualizações
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 Respostas
Responde à pergunta

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 Relatório

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 Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda