728x90
iframe 안을 클릭했을 때 이벤트 처리방법
<!doctype html>
<html lang="en">
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js">
<script type="text/javascript">
var detector = setInterval(function() {
var elem = document.activeElement;
if (elem && elem.tagName == 'IFRAME') {
alert("iframe click");
clearInterval(detector);
}
}, 100);
</script>
</head>
<body>
<iframe id='' src='https://tv.naver.com/embed/25698159?autoPlay=true' frameborder='no' scrolling='no' marginwidth='0' marginheight='0' WIDTH='544' HEIGHT='306' allow='autoplay' allowfullscreen ></iframe>
</body>
</html>
반응형
'JQUERY' 카테고리의 다른 글
select, input 태그 이름 배열 [] 로 만들 경우 값 가져오기 (3) | 2024.08.27 |
---|---|
select, input 태그 이름 배열 [] 로 만들 경우 값 가져오기 (0) | 2024.08.12 |
SLICK 슬라이드 페이징 넣기 (0) | 2024.08.06 |