jqm ver 1.2.0 hash not added to url on normal link - why?
I am a noob to jqm , i have downloaded ver 1.2.0 and testing it.
the docs and videos i have seen show that a normal link should be intercepted by jqm and ajax goodness done on it. It should also add a hash to the url, but for me it does not add the hash to the url when i use separate files.
e.g.
I have 2 pages
index.html
audit.html
html for index.html
- <div data-role="page" >
- <div data-role="header">
- <h1>Audit message</h1>
- </div><!-- /header -->
- <div data-role="content">
- <form action="form.php" id="QS-selectGroup" method="post">
- audit
- </form>
- <p>
- <a href="audit.html" class="ui-link-inherit" data-role="button" data-inline="true" data-transition="slide" data-icon="question" data-iconpos="notext">link</a>
- </p>
- </div><!-- /content -->
- </div><!-- /page -->
html for audit.html
- <div data-role="page" >
- <div data-role="header">
- <h1>Audit message</h1>
- </div><!-- /header -->
- <div data-role="content">
- <form action="form.php" id="QS-selectGroup" method="post">
- audit
- </form>
- <p>
- <a href="index.html" class="ui-link-inherit" data-role="button" data-inline="true" data-transition="slide" data-icon="question" data-iconpos="notext">link</a>
- </p>
- </div><!-- /content -->
- </div><!-- /page -->
when i click on the links, the slide transition does work, which would indicate to me that the ajax is working, but the #audit.html is not added to the url. Is this a new "feature" ?
Can I disable this feature?