usmauriga
usmauriga

Reputation: 93

How to get element from inside iframe

Hello I have iframe and in the iframe i need to get element of the parent window. How can i do it ?

    index.html

child.html get parent element by id

Upvotes: 0

Views: 95

Answers (1)

I wrestled a bear once.
I wrestled a bear once.

Reputation: 23409

If you have var myVar in the parent window, you can access it from the child window with window.parent.myVar.

Note: this will only work if both child and parent are on the same domain.

See here for more info.

Upvotes: 1

Related Questions