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

170
Vistas
"touchstart" event used for a "doubletap" prevents scroll working on swipe up or down

I added a "touchstart" event to a "tbody" so a function ocurrs when I doubletap on a row. This works perfectly BUT prevents scroll up or down in mobile (so if my table has enough rows, you'll get stuck)

//DoubleClick not working on doubleTap, so...
$("tbody").on("touchstart", tapHandler);
var tapedTwice = false;
function tapHandler(e) {
    
    if(!tapedTwice) {
        tapedTwice = true;
        setTimeout( function() { tapedTwice = false; }, 300 ); //doubletap speed
        return false;
    }
    e.preventDefault();//Prevents zoom, but without it, scroll still not working
    lightboxPrint(e);  //Fx for this event
 }

Already try deleting all CSS and Bootstrap. Only function that gives promblems is this one. If this can be fixed, can I add a new event for "swipe up" or "swipe down" to scroll?

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

0

I'm answering with Terry's words, just to close the question. He should get full credit. Instead of starting with "tapedTwice = false", I just started with "tapedTwice = true" and change the funtion accordingly.

$("tbody").on("touchstart", tapHandler);
var tapedTwice = true;
function tapHandler(e) {
    
    if(tapedTwice) {
        tapedTwice = false;
        setTimeout( function() { tapedTwice = true; }, 300 );
        return true;
    }
    e.preventDefault();//Para evitar el zoom
    lightboxPrint(e);  
};
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