Here is the link to the app i am working on http://diligentbrainteam.com/fdd/. Try entering some zip code (2450), and the transition to next page is using ‘changePage’ method. The back button on the second page does not seem to be working. The URL is always the same, as if the new page is being loaded in the current page. Any suggestions on why this is happening?
Here is the link to the app i am working on http://diligentbrainteam.com/fdd/ . Try
Share
In the second page you have
<div class="left back-btn"><a href="#" data-rel="back">Back</a></div>.Since thehrefis linked to the same page its not going anywhere. Try to change thehref="#"to the starting page and it should work fine.