1. iframe 부모창에 .background_layer 활성화
$('.background_layer', parent.document).show();
2. iframe 부모창의 다른 아이프레임 컨트롤
$("#id", parent.frames['frameid'].document);
3. iframe 부모창의 높이값 구하기
$(parent.window).height(); //브라우저의 뷰포트의 높이 반환
$(parent.document).height(); //HTML의 높이를 반환
4. iframe 부모창 스크롤바 이동
var position=$("#pre_userdb",parent.document).offset();
$('html, body', window.parent.document).animate({scrollTop:position.top}, 'slow');
출처 : http://superad.tistory.com/397
728x90
반응형
'Web > jquery' 카테고리의 다른 글
[AJAX] ajax기본 (0) | 2018.05.15 |
---|---|
[제이쿼리] 스크롤 부드럽게 내려가기 (0) | 2018.05.15 |
[제이쿼리] fading / sliding / this (0) | 2018.05.15 |
[제이쿼리] 스크롤, 위치 값 구하기 (0) | 2018.05.15 |
[제이쿼리] 위치 및 크기 다루기 (0) | 2018.05.15 |