css3 - iPad websites with "-webkit-overflow-"scrolling:touch;" the scrolling just stops working sometimes… -
this safari on ipad
i have following css on div content inside overflowing:
#some_div{ position: absolute; top:0px; left: 0px; right: 0px; bottom: 0px; overflow-y:scroll; overflow-x:scroll; -webkit-overflow-scrolling: touch; }
however after while, or when hiding , bowing div, scrolling stops working.
has has before or knows how fix it?
cheers!
i able around "bug" preventing default behavior on body tag
$('body').on('touchmove', function (e) { e.preventdefault(); });
i had problem on iframe though
Comments
Post a Comment