본문 바로가기
기타/프로그래밍 관련

Jquery Iframe 로딩 완료 이벤트 잡기

by WebHack 2013. 4. 18.

//http://en.wikipedia.org/wiki/Same_origin_policy 참조

$('#IframeTest').attr('src','http://1.220.111.12/dev/daejeon_choi/index.html');

$(function() {

$('#IframeTest').load(function(){

console.log("#IframeTest 준비 완료");

//iframe 일 경우 제어 방법(외부 Iframe 링크시 작동 안 됨)

//$('#iframe').contents().find("head").append(cssLink);

var vImg = $("#IframeTest").contents().find("img")

console.log(vImg);

});

});