In my view, I want to perform an action unless the user got there with a back button. Is there a way to determine in the view if the source request was from a back button or not?
Here is the view's show I event I am trying to do it in:
<div data-role="view" data-show="onShow"...>...</div>
onShow: function (e) {
if (???) { //How to determine if user came via back button or not
//Do something
}
}
Try the following code to handle back button in your application.