I'm using jquery mobile 1.3.2 and have a multipage html as follows:
<div data-role="page" data-add-back-btn="true" id="form">
<div data-role="header" data-position="fixed">
<a href="#queue" data-icon="star" data-iconpos="notext" class="ui-btn-right" data-transition="flip">Queue</a>
</div><!-- /header -->
...
</div><!-- /page #form -->
<div data-role="page" id="queue" data-title="xxx">
...
</div><!-- /page #queue -->
clickign on the button doesn't work, but when I refresh the page and click again, it works. I've compared the html source before and after refreshing, and found them identical.
Is anything wrong or is this a bug of jquery mobile?
Multi-page template doesn't work with JQM (jQuery Mobile) AJAX navigation system. If you load the multi-page template using AJAX it won't work.
Multi-page template requires page refresh to work. This is not a bug with JQM, instead this is how multi-page template works :)