JSFiddle - React, Tailwind, and code Playground
by ryanttb
HTML
<script src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.css">
<div id="page1" data-role="page">
<p>Page 1</p>
<ol>
<li><a href="#page2">1. go to page 2</a></li>
<li><a href="#page2">5. go to page 2 again</a></li>
</ol>
</div>
<div id="page2" data-role="page">
<p>Page 2</p>
<ol start="2">
<li>2 & 3. <a href="about:blank" rel="external">go to blank</a>...right-click and choose Back when you get there</li>
</ol>
<ol start="4">
<li>4. right click on this page and choose Back</li>
<li>6. you now have two copies of page 2 on the DOM (along with any inputs they have which is how I noticed)</li>
</ol>
</div>