Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/04/2015, 08:45
Avatar de NueveReinas
NueveReinas
 
Fecha de Ingreso: septiembre-2013
Ubicación: No tan Buenos Aires
Mensajes: 1.101
Antigüedad: 11 años, 2 meses
Puntos: 145
Respuesta: como podria hacer que no se pudiera hacer scroll en moviles

Prueba con esto: http://stackoverflow.com/questions/1...ablet-browsers

Código Javascript:
Ver original
  1. //target the entire page, and listen for touch events
  2. $('html, body').on('touchstart touchmove', function(e){
  3.      //prevent native touch activity like scrolling
  4.      e.preventDefault();
  5. });
__________________
¿Te sirvió la respuesta? Deja un +1