I am using Ratchet. My phonegap application has two pages containing jquery.js, ratchet.js and blockui.js (based on jQuery).
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>
$.blockUi() executes correctly. then I click the link on the first page. After I click the link on the second page, JavaScript does not start. What should I do?
source share