mimic data-rel="back"?
mimic data-rel="back"?
I´m build a PhoneGap/Jquery app (Android). I have a page that is called bu multiple other pages (changePage) with a button:
<a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-left">Close</a>
It works great when i click on the button. It goes back to the previous page. How can i do this in code without having to know the actual path to it?
Is the history.go(-1) i have seen in some example really recommended?