I'm encountering an issue with displaying the scrollbar on a div while using an iPad device.
Currently, I am utilizing:
-webkit-overflow-scrolling: touch;
Although this is functioning properly, my goal is to have the scrollbar visible without the user needing to touch the div
in order to activate it!
Specifically, I would like the overflow-y
to be visible only when accessing the page on an iPad, and then once the user interacts with the div, show only the overflow-y
!
Is there a way to achieve this?