I have a page with an iframe.
<
Assuming that the iframe source is on the same domain as the outer page, you can use the contents method:
The .contents() method can also be used to get the content document of an iframe, if the iframe is on the same domain as the main page.
jQuery(document).ready(function(){
jQuery('#my_iframe').contents().click(function(){
alert('click inside iframe');
});
});