I am using Phonegap 2.5 for the iPhone application.I am also using query mobile. Its giving scrolling issue when I use -webkit-overflow-scrolling:touch; Here are the screenshots:
and after scrolling content disappears:
Header and footer are fixed. this is the code I am using for the div which is scrolling div:
<div style="position:absolute;width: 100%; height:75%; margin-top:10%; overflow-y:auto; -webkit-overflow-scrolling: touch; -webkit-transform:translate3d(0,0,0);">
<!--some content -->
</div>
when I remove -webkit-overflow-scrolling:touch; the content doesn't disappear but it doesn't scroll like native. I can't figure it out what is the problem?
*UPDATE:*It works fine on ios 6 simulator. screenshots are of iOS 5 device.