사용소스
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>xe 게시판 사용하기</title>
<style>
</style>
<script type="text/javascript">
function resizeFrame(frm) {
frm.style.height = "auto";
contentHeight = frm.contentWindow.document.body.scrollHeight;
frm.style.height = contentHeight + 40 + "px";
}
</script>
</head>
<body >
<header id="header">헤더</header>
<section id="section-wrap" >
<iframe src="http://comja44.dothome.co.kr/xe/qna" frameborder="0" scrolling="auto" width="100%" height="500" onload="resizeFrame(this)"></iframe>
</section>
<footer id="footer">푸터</footer>
</body>
</html>