Im trying around with HTML and found the -tag. I provided an url as src and the website does load without problems. However I canot get the HTML-Code of this inner website. How can I access it with JS?
I already tried
innerHTML, children, childNodesetc.
HTML
<div class="Webframe">
<embed id="webframe" src="http://testapp.galenframework.com/"></embed>
</div>
Console output of
let webframe = document.getElementById("webframe");
console.log(webframe)
can be seen here
https://i.stack.imgur.com/lFFUP.jpg
If anyone has an idea how to access this #document, I would be happy to try it out
Thank you in advance