i wanna detect click INSIDE iframe not onclick on iframe itself i tried onclick event u must click on iframe itself to trigger function i even tried addeventlistener to wind
Only works on iframes on the same domain:
$('body', $('select-your-iframe-here').contents()).click(function(event) { console.log('Clicked! ' + event.pageX + ' - ' + event.pageY); });