I am developing an Cordova Android application with jQuery mobile. I did override the back button click, but backward navigation is not happening. This is my code:
onBackButtonTap : function(event){
navigator.app.backHistory();
}
When I press the back button, the call is coming to the above function but the application is not navigating back. Can anyone help me with that?