I use Ratchet. My phonegap app has two pages, containing jquery.js, ratchet.js, and blockui.js (jQuery-based).
index.html:
<script>$.blockUi()</script>
<a href="2.html" data-transition="slide-in">2.html</a>
2.html:
<a href="index.html" data-transition="slide-out">index.html</a>
at first $.blockUi()
runs correctly. then I press the link at the first page. After I press the link on the second page, no JavaScript runs. What should I do?