[jsp] iframe resize
site1 코드
<html>
<%-- iframe resize --%>
function autoResize(i) {
var iframeHeight=(i).contentWindow.document.body.scrollHeight;
(i).height=iframeHeight+20;
}
<body>
…
<iframe src="<c:url value="/contentEdit/page.do?pageCode=191"/>" name="imgview" frameborder="0" scrolling="no" onload="autoResize(this)" style="width: 530px"></iframe>
…
</body>
</html>
[jsp] iframe resize
'programming > jsp' 카테고리의 다른 글
[jsp] ckfinder thumbnail 이미지 보이지 않는 오류 수정 (0) | 2012.11.14 |
---|---|
[jsp] 웹어플리케이션 SSO 방식 (0) | 2012.11.13 |
[jsp] 톰캣 tomcat server.xml ssl 설정하기 (0) | 2012.06.14 |
[windows7] Favorites 즐겨찾기 위치 (0) | 2012.06.13 |
[jsp] sample (0) | 2012.06.02 |