I'm currently working on a project titled "Scrolling JQuery Mobile Panel Apart from Content", and you can check out my progress here.
In order to achieve what I want, I have applied the following CSS code. However, I am facing an issue where the overflow-y: scroll property always displays even when the content does not overflow.
Do you have any suggestions or ideas on how to fix this? Thank you in advance.
.ui-panel-inner {
position: absolute;
top: 1px;
left: 0;
right: 0;
bottom: 0px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}