Hola Xias
El iframe provee estas
colecciones:
all, children
all:
Description
Returns an object reference to the collection of elements contained by the object.
Syntax
object.all(index)
Parameter Description
object An object that can contain elements such as the document.
(index) Optional. An integer or a string specifying the index value of the element to retrieve. Integer indexes are zero-based, meaning the first element in the collection has index 0. A string index is valid only if the string is a name or identifier of at least one element in the document.
children:
Description
Retrieves only the direct descendants of an element. The elements contained in this collection are undefined if the child elements are overlapping tags. Similar to the all collection.
Syntax
object.children(index)
Parameter Description
object The document object.
(index) Optional. An integer or a string specifying the index value of the element to retrieve. Integer indexes are zero-based, meaning the first element in the collection has index 0. A string index is valid only if the string is a name or identifier of at least one element in the document.
Suerte