jqm ver 1.2.0 hash not added to url on normal link - why?

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
  1. <div data-role="page" >

  2. <div data-role="header">
  3. <h1>Audit message</h1>
  4. </div><!-- /header -->

  5. <div data-role="content">

  6. <form action="form.php" id="QS-selectGroup" method="post">

  7.    audit

  8. </form>
  9. <p>
  10. <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>
  11. </p>
  12. </div><!-- /content -->

  13. </div><!-- /page -->
html for audit.html
  1. <div data-role="page" >
  2. <div data-role="header">
  3. <h1>Audit message</h1>
  4. </div><!-- /header -->
  5. <div data-role="content">
  6. <form action="form.php" id="QS-selectGroup" method="post">
  7.    audit
  8. </form>
  9. <p>
  10. <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>
  11. </p>
  12. </div><!-- /content -->
  13. </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?