You cannot detect click events in a cross-domain iframe.
Thus, you may have one bad option:
One of the closest things you can do is to find that the focus has moved from your window to the iframe:
window.focus();
window.addEventListener('blur', function(e){
if(document.activeElement == document.querySelector('iframe'))
{
alert('Focus Left Current Window and Moved to Iframe / Possible click!');
}
});
http://jsfiddle.net/wk1yv6q3/
However, this is unreliable, free focus does not mean a click, it can be moved by the user through the website using TAB.
, , iframe, , , , .