In my application I am using window.history.back to navigate back to previous View
Declaration of back button
<
Try this
if(r){ try{ var nav = window.navigator; if( this.phonegapNavigationEnabled && nav && nav.app && nav.app.backHistory ) { nav.app.backHistory(); } else { window.history.back(); } } catch(e) { alert(e); } }