WebView.goBack not working in android
In my application WebView.goBack not working, I have used following code in event listener
backButton.addEventListener('click', function(e){
Titanium.UI.WebView.goBack();
});
How do I navigate to back?
1 Answer
-
Accepted Answer
You need to call
goBack()
on an instance of a WebView, not on the WebView module itself. For example:var webview = Ti.UI.createWebView({ url: 'your_url.html' }); backButton.addEventListener('click', function(e){ webview.goBack(); });