Question

In my web page on one div in which I show table, I have used JQuery Slimscroll plugin. It works fine for Desktop. But for iPad it dosen't work. I have applied slimscroll using following code.

<script>
     $('#analyticsContainer').slimScroll({
        height: '250px',
        distance: '3px'
        });

</script>

If I want to make this plugin work on ipad also what should I do?

Was it helpful?

Solution

Actually there is no need to implement slimscroll for ipad. As the scrolling in ipad has already a slim bar.

I was able to get this by applying following css to the div.

style="height:250px;overflow:auto; -webkit-overflow-scrolling: touch;"
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top