I came across the same issue with Zepto.js. I managed to get around this problem by first disabling overflow: scroll the scroll element, for example:
$("#element-to-scroll").css({'overflow': 'hidden'}).scrollLeftTo(newXPos, 250).css({'overflow': 'scroll');
source share