Touchmove And Scrollable Content Using Jquery Mobile And Phonegap In Android
Ok so I found that using Jquery Mobile and Phonegap to develop android App works fine in android 4+, but on older versions for example 2.2.2 the scrollable functionality breaks. So
Solution 1:
try to replace :
<div data-role="dialog" id="main"data-theme="a">
by
<div data-role="page" id="main"data-theme="a">
and remove the div with id scrolldroid
<div id="scrolldroid" class="scrollstyle"> </div>
and replace :
<div data-role="footer"class="footermodal">
by
<div data-role="footer"data-position="fixed"data-tap-toggle="false">
Post a Comment for "Touchmove And Scrollable Content Using Jquery Mobile And Phonegap In Android"