Because of the widget format I\'m working with I have a page which has multiple iframes embedded within iframes. I won\'t paste the code as it\'s vast and unwieldy but it is
I do not believe you can reference the iframe's children directly. You will need to recursively search each iframe using it's .contents() call.
.contents()
As far as I know, this will only work as long as the same-origin policy is not violated (i.e. the iframes must point to the same domain).