Eli
Eli

Reputation: 2696

Propagating mouse events from iframes to the hosting document

I have an iframe covering the entire HTML document, and I'd like to propagate clicks and hover events back to the hosting document.

What are my options?

Upvotes: 5

Views: 4157

Answers (1)

CVM
CVM

Reputation: 800

I was asked to look into this several weeks ago for a project. It's possible to do it, and there's a working example of it in action here:

http://www.esqsoft.com/javascript_examples/iframe_talks_to_parent/

However, the crucial thing to bear in mind is that unless the parent and child are on the same domain, it's not possible to have events passed between them. If your iframe contains a page from a different domain then you're out of luck, I think.

Upvotes: 3

Related Questions