로딩
요청 처리 중입니다...

iframe 클릭 이벤트 처리

 iframe 클릭 이벤트 처리

iframe 안을 클릭했을 때 이벤트 처리방법
DOCTYPE html> var detector = setInterval(function() { var elem = document.activeElement; if (elem && elem.tagName == 'IFRAME') { alert("iframe click"); clearInterval(detector); } }, 100);