Edit: New title. What I\'m looking for is a document.querySelector for elements inside an iframe.
I\'ve done quite a bit of Googling for an answer and finally I\'m s
simple es6 adapted from h3manth:
document.querySelectorAll('iframe').forEach( item => console.log(item.contentWindow.document.body.querySelectorAll('a')) )