B beelze69 Active Member Licensed User Longtime User Oct 4, 2017 #1 Hi, I would like to clear the contents of the Webview control via code but there is no 'clear' method. Can somebody guide me how to clear the contents of the Webview control via code. Regards, Raman from India
Hi, I would like to clear the contents of the Webview control via code but there is no 'clear' method. Can somebody guide me how to clear the contents of the Webview control via code. Regards, Raman from India
NJDude Expert Licensed User Longtime User Oct 4, 2017 #2 Assuming your webview is named WebView1 B4X: WebView1.LoadHTML("") Or if you want to be picky B4X: WebView1.LoadHTML("<html></html>") Upvote 0
Assuming your webview is named WebView1 B4X: WebView1.LoadHTML("") Or if you want to be picky B4X: WebView1.LoadHTML("<html></html>")
Cableguy Expert Licensed User Longtime User Oct 4, 2017 #3 How about opening(navigating) the "about:blank" page? Upvote 0
B beelze69 Active Member Licensed User Longtime User Oct 5, 2017 #4 Dear NJDude... Thanks a lot ! It worked ... Upvote 0