javascript - Cannot scroll horizontally with iScroll -
javascript - Cannot scroll horizontally with iScroll -
i want scroll horizontally inner divs in next html:
<div id="outer"> <div id="inner"> <div class="cell"> cell 1 </div> <div class="cell"> cell 2 </div> <div class="cell"> cell 3 </div> </div> </div>
im using iscroll this. however, im not able scroll, though scrollstart event triggered seek scroll. jsfiddle here. ideas?
you can without using iscroll.
in css, alter #outer overflow value "scroll" below
#outer{ ... overflow:scroll; }
javascript iscroll
Comments
Post a Comment