Dan
Dan

Reputation: 1262

JqueryMobile doesn't load linked page at all

I'm trying to get jQueryMobile working using that latest Alpha release (3) and jQuery 1.5 from the CDNs. The code that is rendered is below. Whenever I click on the link from the page, it just sits on the spinner and never loads. But when I click on the link from the source, the page loads. Anyone have any ideas?

<!DOCTYPE html> 
<html> 
  <head>
    ... 
    <link href='http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css' rel='stylesheet' type='text/css'> 
    <script src='http://code.jquery.com/jquery-1.5.min.js'></script> 
    <script src='http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js'></script> 
  </head> 
  <body> 
    <div data-role='page'> 
      <div data-role='header'> 
        <h1>Some Text</h1> 
      </div> 
      <div data-role='content'> 
        <ul data-role='listview'> 
          <li><a href="/persons/1">This is a test</a></li> 
        </ul> 
      </div> 
    </div> 
    <div id='footer'>Some text</div> 
  </body> 
</html> 

Upvotes: 1

Views: 1431

Answers (1)

Dan
Dan

Reputation: 1262

The problem was that the view it was looking for was not a mobile view. It was returning a standard view which didn't have the JQM controls loaded onto it.

Upvotes: 2

Related Questions