How to access a web page after having embedded it into a div? Trying normally just returns null. Here's an example of what I mean:
var replaceThis = document.querySelector('.div1');
var withThis = document.querySelector('.div2 a').getAttribute("href");
replaceThis.innerHTML = '<object type="text/html" data="' + withThis + '" style="width: -webkit-fill-available; height: -webkit-fill-available;"></object>';
var thingFromEmbeddedSite = document.querySelector('.div2'); //returns div2
console.log(thingFromEmbeddedSite);
thingFromEmbeddedSite = document.querySelector('h2'); //returns null
console.log(thingFromEmbeddedSite);
You would have to wait for the content to load and then access the content, i have made a small update to your fiddle, it does not work in there due to cross-origin.
HTML:
JS:
https://jsfiddle.net/zhhL9rjr/6/
but should work if you load something from the same domain.