Probleme with popup listview and rel="external"

Probleme with popup listview and rel="external"

Hello the community !

For start i alert you i'm french and my English is not fluently..i hope i will do the minimum of mistake

I have a little problem with my popup who contain a listview. This one works fine. but i i click on a element of the listview i arrived on the good destination but if i do a click on previous in my browser (Safari on the iOS Simulator or other, i have the same behaviour), i'm automatically redirect on the same page...

For exemple : 

  1. <div id="bouton-contacts" data-role="controlgroup" data-type="horizontal" data-mini="true" >
  2.       <a href="#popupCallMeBack" data-rel="popup" data-position-to="window" data-role="button"       data-inline="true" data-theme="a" data-transition="pop" data-mini="true" class="phone">Call me back</a>
  3.       <a href="#popupMenu" data-position-to="window" data-rel="popup" data-role="button"                     data-inline="true" data-transition="pop" data-theme="a">Get In Touch</a>
  4. </div>

  5. <div data-role="popup" id="popupMenu" data-theme="b">
  6. <ul data-role="listview" data-inset="true" style="min-width:210px;" data-theme="a">
  7. <li data-role="divider" data-theme="a">Get In Touch</li>
  8. <li><a href="contact.html#page1" rel="external" >page1</a</li>
  9. <li><a href="contact.html#page2" rel="external">page2</a></li>
  10.        </ul>
  11. </div>

If i click to go to  contact.html#page2  and do a previous click on my browser, i stay always in this page...And i can see a short instant the listview...


I hope my explication are correct...Thank For help.