I saw many questions and answers about scrolling in jqeury mobile. I tried all the suggestions i saw, and still noting is working for me.
I'm using jquery mobile 2.0.0 and i retrieve pages with AJAX call and i want to present them with scrolling view. i don't know why, but i get as default a "x" scroll at my pages, and i can't change it. but nothing that i tried worked. i want to change the direction of the scroll to "y" and disable it in some pages. also i need the scrolling to be active only in the content section,
<link href="jquery.mobile.theme-1.2.0.min.css" rel="stylesheet" type="text/css"/>
<link href="jquery.mobile.structure-1.2.0.min.css" rel="stylesheet" type="text/css"/>
<script src="jquery.mobile.scrollview.css" type="text/javascript"></script>
<script src="jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="jquery.mobile-1.2.0.js" type="text/javascript"></script>
<script src="jquery.mobile.scrollview.js" type="text/javascript"></script>
<script src="jquery.scrollview.js" type="text/javascript"></script>
<div data-role="header" data-theme="b" class="rout_header" >
<a href="#page3" data-icon="arrow-l">back</a>
<h1 align = "center">results</h1>
</div>
<div data-role="content" id="content">
<div id="wrapper" class="wrapper" >
<div id="scroller" class="scroller" data-scroll="true" data-scroll="y" >
<ul id="thelist" data-role="listview">
...
</ul>
</div>
</div>
</div>
...
i tried to add after the AJAX call:
$("#scroller").scrollview({ direction:"y" }) ;
Thank you