Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

158
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda