I want to do two things:

  1. Disable Elastic Scrolling of document
  2. Enable scrolling of div.master

I know you can disable the elastic scrolling using the following:

document.addEventListener('touchmove',function(e) { e.preventDefault() },false);

However this disables all scrolling, not just the elastic scrolling. I thought maybe that you could just enable scrolling again for just the div.master but I'm not sure how you would do that.

I want just this section to scroll

link|improve this question

65% accept rate
To my knowledge, there are no built-in solutions. You will need to create your own algorithm or download a pre-made one. Or are you already using a library? – Jeffrey Sweeney Feb 8 at 1:36
feedback

1 Answer

Well, I have absolutely no idea, but iScroll does it. For a better version of iScroll, use iScroll 4.

Oh yeah, and after checking out AnonyMouse, I advise do not use position: fixed;, because only iOS 5 supports it.

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.