본문 바로가기
JAVASCRIPT/JQuery

[JQuery] 자식창에서 부모창의 함수 호출하기

by 원동호 2018. 10. 7.
반응형
//parent page 

function parent() { 
	alert('저는 부모입니다.'); 
}  

//child page - opener.parent.부모 page function

function calllparent() { 
	opener.parent.parent(); 
}
반응형

댓글