jQuery iframe 보이기/숨기기 토글

1 개요[ | ]

jQuery iframe 보이기/숨기기 토글

2 소스 코드[ | ]

<style>
#my_frame {
	background-color: red;
	float: right;
	clear: both;
}
</style>
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
	$('#my_frame').toggle();
	$('#toggle_frame').click(function() {
		$('#my_frame').toggle();
	});
});
</script>

<button id='toggle_frame'>프레임 토글</button>
<iframe id="my_frame"></iframe>

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}