I'm trying to load a local web page executing:
var html = document.open('google.html');
document.documentElement.innerHTML = html;
It loads the page but it's not well formatted and images won't display. How could I load the entire contents?
Thanks