The Blogger engine will insert scripts at the end of the template, whether you want it or not in the mobile version. Since God knows how and when they are introduced, and if there is a way to prevent this, I find it too difficult to completely not load the scripts. But you can get them to do nothing with this simple hack.
Just add the following lines up </body>to the template.
<script>
document.getElementById('main').addEventListener = function() {}
</script>
On the minus side, you cannot add any events at all to id=main div. On the plus side, the scroll has disappeared because the Blogger script cannot add events touchstart, touchmoveand touchend. Hooray!
source
share