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

92
Vistas
PullToRefresh Issue when scrolling

I am using the Pull to refresh so when pulled at top of page the page reloads. This is for a web page and I want it to to act like mobile app on refresh.

Problem is if I scroll to bottom of page, even when I begin to scroll back up, it reloads. I only want to do it when the page reaches the top of page.

My code is below. I am using this for reference. https://www.boxfactura.com/pulltorefresh.js/

  /* global PullToRefresh */
  PullToRefresh.init({
    mainElement: '#mainapp',
    onRefresh: function() { location.reload(); alert('refresh') }
  });
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

I have never used this package, and it seems its purpose for mobile applications. However, you could check if the user is at the top of the page before reloading. Assuming this method will run every time the user scrolls up you can do something like this:

/* global PullToRefresh */
  PullToRefresh.init({
      mainElement: '#mainapp',
      onRefresh: function() {
           if (document.body.scrollTop === 0) {
               location.reload();
               alert('refresh');
           }
      }
  });
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