I'm developing a Web app that will only be used within an internal system, using either an iPad or a large touch screen with IE10. I have some areas of content that I'd like to make scrollable using overflow: auto.
For the iPads, I can use -webkit-overflow-scrolling: touch to bring in iOS-style scrolling to the content area – the main feature I want here is the ability to scroll the content up or down by touching anywhere in the content area (the same as you would scroll on any touch device). The iPads are perfect, but I'm having trouble finding an equivalent that will work in IE10. The normal scrollbar appears to the right of the content area in IE10, but this is a bit fiddly to use on a touch screen.
Does anyone know of a JavaScript solution that will replicate the functionality of -webkit-overflow-scrolling: touch in IE10?