작성일 : 12-03-15 10:39
|
[JQuery] iframe resize
|
|
|
글쓴이 :
조형래
 조회 : 4,471
|
$("#frameDS", parent.document).height($("#s_store_all_wrap").height());
부모창의 아이프레임 이름 : frameDS
자식창의 body 크기의 div id : s_store_all_wrap
///////////////////////////////////
스토어에서는 아래와 같이 되어 있었음
$(document).ready(function () {
$('#test').css('height', $(this).height() + 100);
});
|
|