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

151
Vistas
Disable a button for some hours with countdown in javascript

I want the button to be disabled after clicking it for 1 hr with displaying the countdown for current logged in user, is it possible to store time in firebase? And retrieve it and i want the time to be continue even the client refreshes the site. Any ideas or suggestions

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

For your initial question (without Firebase), here is a quick example

const button = document.querySelector('#mybutton');
let sec = 5;
let countdown = null;

const updateButton = () => {
  button.innerHTML = `wait ${sec}s`;
  
  if (sec === 0) {
    clearInterval(countdown);
    sec = 5;
    button.innerHTML = 'Click me';
    button.disabled = false;
    return;
  }

  sec--;
}

button.onclick = () => {
  button.disabled = true;
  updateButton();
  countdown = setInterval(function() {
    updateButton();
  }, 1000);
}
<button id="mybutton">Click me</button>

I guess you could make calls to Firebase when you init the sec variable and when you update it, but you could just use local storage for that as you would not add any security using Firebase to prevent any request to be sent.

about 4 years ago · Juan Pablo Isaza Denunciar

0

Store the timer inside the browser storage and create a setTimeout on click or on browser refresh by picking up the remaining milliseconds from the browser.

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