Skip to content

Instantly share code, notes, and snippets.

View ruhul0's full-sized avatar
🎯
Focusing

Ruhul ruhul0

🎯
Focusing
View GitHub Profile
@ruhul0
ruhul0 / gist:4fe5c45f7ea3e8a3e3d171dc2a22c66d
Created February 24, 2019 17:02 — forked from jaydson/gist:1780598
How to detect a click event on a cross domain iframe
var myConfObj = {
iframeMouseOver : false
}
window.addEventListener('blur',function(){
if(myConfObj.iframeMouseOver){
console.log('Wow! Iframe Click!');
}
});
document.getElementById('YOUR_CONTAINER_ID').addEventListener('mouseover',function(){