Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.