I'm interested in a CSS approach to disabling scrolling on the iPad. I'm using an input type of range to create a slider, but would like to prevent scrolling on the rest of the iPad to keep a fixed position of the body.

Does anyone have a foolproof method?

link|improve this question
feedback

1 Answer

I'm an idiot...but nobody else answered this either. HERE IS THE ANSWER:

  1. create a slider with the input type="range" and give it an id
  2. add the following code to the page:

     document.addEventListener('touchmove', function (e) {if(e.target.id != 'slider_id'){e.preventDefault(); }}, false);
    
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.