Eden
Eden

Reputation: 115

Chrome Extension: communication between iframe and popup

I'm developing a Chrome extension, Which presents the user with an iFrame once the popup window is shown. I wish to invoke javascript function back on the hosting page. Now while I can access the "parent" object (it is not null) I can not invoke any method (like you would do with standard webpage that hosts an iFrame).

Any ideas how to accomplish this?

Thanks, E.

Upvotes: 1

Views: 2011

Answers (2)

Mohamed Mansour
Mohamed Mansour

Reputation: 40149

If the iFrame is an extension page, then you can use chrome.extension.getViews http://code.google.com/chrome/extensions/extension.html#method-getViews

That will get the list of views for that extension, and can manipulate it that way.

Upvotes: 2

theycallmemorty
theycallmemorty

Reputation: 12962

You can use the opener property to access the window that created the popup.

Upvotes: 1

Related Questions