So, I am doing this:
var stuff = document.getElementsByTagName('iframe');
It works great. Then I want to do this:
var other = stuff.getElementsByTagName('a');
but that will not work. It ends with undefined. I can do:
var other = document.getElementsByTagName('a');
and this is normal. Should I not get all the "a" in the "iframe"?
Edit: Thus, I am not the owner of the iframe, and now I get the impression that I cannot access anything that generates an iframe, which means that I think I'm screwed.
source share