Jquery capture Click on Iframe

iframe, jquery

Solution

You can not interact with iframes which are not under the same domain. This is always prevented by the browser's policy.

See Detect Click into Iframe using JavaScript

Problem

So I have an Iframe on my page like ``` <iframe width="640" height="360" frameborder="0" allowfullscreen="" src="http://www.youtube.com/xxxxxx"> ``` I was wondering how I could capture the click event on this. The Iframe's do not have an id or class set on them

Original source

Related problems