[제나플러스] 전체메뉴보기 - 더보기버튼 활용
페이지 정보
본문
<a href="javascript:toggleLayer('commentForm');">전체메뉴</a>
***********
<script>
function toggleLayer(whichLayer) {
var elem, vis;
if(document.getElementById) // this is the way the standards work
elem = document.getElementById(whichLayer);
else if(document.all) // this is the way old msie versions work
elem = document.all[whichLayer];
else if(document.layers) // this is the way nn4 works
elem = document.layers[whichLayer];
vis = elem.style;
// if the style.display value is blank we try to figure it out here
if(vis.display==''&&elem.offsetWidth!=undefined&&elem.offsetHeight!=undefined)
vis.display = (elem.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none';
vis.display = (vis.display==''||vis.display=='block')?'none':'block';
}
</script>
<style>
div#commentForm {
display: none;
margin: 0px 0px 0px 0px;
font-size:11px;
}
</style>
<div id="commentForm">
<?=zn_speedmap("basic"); // speedmap?> <<원하는 출력물
</div>
***********
<script>
function toggleLayer(whichLayer) {
var elem, vis;
if(document.getElementById) // this is the way the standards work
elem = document.getElementById(whichLayer);
else if(document.all) // this is the way old msie versions work
elem = document.all[whichLayer];
else if(document.layers) // this is the way nn4 works
elem = document.layers[whichLayer];
vis = elem.style;
// if the style.display value is blank we try to figure it out here
if(vis.display==''&&elem.offsetWidth!=undefined&&elem.offsetHeight!=undefined)
vis.display = (elem.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none';
vis.display = (vis.display==''||vis.display=='block')?'none':'block';
}
</script>
<style>
div#commentForm {
display: none;
margin: 0px 0px 0px 0px;
font-size:11px;
}
</style>
<div id="commentForm">
<?=zn_speedmap("basic"); // speedmap?> <<원하는 출력물
</div>
추천0