0

When i try on desktop the div scrolling works. But in ipad it doesn't work. Here is my code.

Html:

<div id="devicesContent" >
     <table></table>
</div>

css:

#devicesContent{
      position: absolute;
      top: -625px;
      height: 565px;
      width: 100%;
      display: block;
      overflow-y:scroll;
      -webkit-overflow-scrolling: touch;
}

What am i missing?

Thanks!

Ajay Narain Mathur
  • 5,326
  • 2
  • 20
  • 32
Tuvia Khusid
  • 792
  • 5
  • 15
  • 31
  • 2
    http://stackoverflow.com/questions/5976111/how-can-i-implement-a-scrollable-div-on-ipad or use TWO fingers on the div!!! That's it – Shrinivas Pai Jun 24 '15 at 12:20

1 Answers1

2

iScroll Works just like the native controls that have one-finger scrolling.

Shrinivas Pai
  • 7,491
  • 4
  • 29
  • 56