Issue with Jquery Mobile Buttons on Chrome Mobile Browser.

Issue with Jquery Mobile Buttons on Chrome Mobile Browser.

Hi There. 


I'm brand new to jQuery and I have been going through a series of tutorials to learn the basics of jQuery Mobile. 


As I was writing some of the sample code I noticed that on my mobile version of Google Chrome (Ver. 33.0.1750.170) Im not able to navigate to anchors on the same page. This behavior works fine in all versions (IE9, Chrome, and Firefox) for the desktop. 


Below is a sample of the code that I was working with. (Please spare the critique about why i shouldn't reference links like this. I'm taking this directly from the jQuery mobile tutorial that I'm working with.). I'm just curious why its not working in Google Chromes mobile app but works fine on the desktop versions of all major browsers.

I Highlighted the relevent sections of code. 

  1.     <body>
  2.         <div data-role="page" id="pageone">
  3.             <div data-role="header">
  4.                 <H1>Buttons Example 4</H1>
  5.                 <h4>Page One</h4>
  6.             </div>
  7.             <div data-role="main" class="ui-content">
  8.                 <p>Welcome</p>
  9.                 <a href="#pagetwo" class="ui-btn">Go To Page Two</a>
  10.             </div>
  11.             <div data-role="footer">
  12.                 <a href="buttons.html">Go Back To Buttons Menu</a>
  13.             </div>
  14.         </div>
  15.         <div data-role="page" id="pagetwo">
  16.             <div data-role="header">
  17.                 <h1>Buttons Example 4</h1>
  18.                 <h4>Page Two</h4>
  19.             </div>
  20.             <div data-role="main" class="ui-content">
  21.                 <p>Welcome to Page Two!</p>
  22.                 <a href="#pageone" class="ui-btn">Go To Page One</a>
  23.             </div>
  24.             <div data-role="footer">
  25.                 <a href="Buttons.html">Go Back to Buttons Menu</a>
  26.             </div>
  27.         </div>
  28.     </body>
Thanks,
Dean