본문 바로가기

웹프로그래밍/Javascript

[jQuery] iframe 내에 스크립트 이벤트 실행하기

반응형

 

iframe 의 ID를 test 라 했을 때,

 

$("#ID")[0].contentWindow.$("body").trigger("실행할 이벤트");

 

또는

 

var event = document.createEvent("CustomEvent");

event.initCustomEvent("실행할이벤트", true, true, null);
frames['ID'].document.dispatchEvent(event);

반응형