Because you’re going to need them… So working with the InAppBrowser is a good way of getting external web content inside your app without too many issues, simply write the following code: 1 2 3 4 ref = window.open('http://www.google.com', '_self', 'location=no'); ref.addEventListener('loadstop', function() { //Page loaded! some code here.. });...